some alterations to the code and defaulted stuff
This commit is contained in:
parent
39bb53528c
commit
128725c38f
4 changed files with 7 additions and 6 deletions
|
@ -61,4 +61,4 @@ $safety-sketchy = #F3D75F
|
||||||
$safety-unsafe = #F3985F
|
$safety-unsafe = #F3985F
|
||||||
$scrollbar-thumb-color = $main-color
|
$scrollbar-thumb-color = $main-color
|
||||||
$scrollbar-bg-color = $input-enabled-background-color
|
$scrollbar-bg-color = $input-enabled-background-color
|
||||||
$transparency-grid-square-color = #00000000
|
$transparency-grid-square-color = #F0F0F0
|
||||||
|
|
|
@ -11,13 +11,13 @@ const defaultSettings = {
|
||||||
upscaleSmallPosts: false,
|
upscaleSmallPosts: false,
|
||||||
endlessScroll: false,
|
endlessScroll: false,
|
||||||
keyboardShortcuts: true,
|
keyboardShortcuts: true,
|
||||||
transparencyGrid: true,
|
transparencyGrid: false,
|
||||||
fitMode: "fit-both",
|
fitMode: "fit-both",
|
||||||
tagSuggestions: true,
|
tagSuggestions: true,
|
||||||
autoplayVideos: false,
|
autoplayVideos: false,
|
||||||
postsPerPage: 42,
|
postsPerPage: 42,
|
||||||
tagUnderscoresAsSpaces: false,
|
tagUnderscoresAsSpaces: false,
|
||||||
darkTheme: false,
|
darkTheme: true,
|
||||||
postFlow: false,
|
postFlow: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ BUILD_INFO=latest
|
||||||
# Set to 127.0.0.1:8080 if you wish to reverse-proxy the docker's port,
|
# Set to 127.0.0.1:8080 if you wish to reverse-proxy the docker's port,
|
||||||
# otherwise the port specified here will be publicly accessible
|
# otherwise the port specified here will be publicly accessible
|
||||||
PORT=8080
|
PORT=8080
|
||||||
|
# EXPOSED_POSTGRES_PORT=34517
|
||||||
|
|
||||||
# How many waitress threads to start
|
# How many waitress threads to start
|
||||||
# 4 is the default amount of threads. If you experience performance
|
# 4 is the default amount of threads. If you experience performance
|
||||||
|
|
|
@ -40,7 +40,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "${MOUNT_DATA}:/data:ro"
|
- "${MOUNT_DATA}:/data:ro"
|
||||||
ports:
|
ports:
|
||||||
- "${PORT}:80"
|
- "${PORT:-3000}:80"
|
||||||
|
|
||||||
sql:
|
sql:
|
||||||
image: postgres:11-alpine
|
image: postgres:11-alpine
|
||||||
|
@ -48,7 +48,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER:
|
POSTGRES_USER:
|
||||||
POSTGRES_PASSWORD:
|
POSTGRES_PASSWORD:
|
||||||
# ports:
|
ports:
|
||||||
# - 5432:5432
|
- "${EXPOSED_POSTGRES_PORT:-34517}:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- "${MOUNT_SQL}:/var/lib/postgresql/data"
|
- "${MOUNT_SQL}:/var/lib/postgresql/data"
|
||||||
|
|
Loading…
Reference in a new issue