personalized
This commit is contained in:
parent
61b9f81e39
commit
5ef62b21a0
4 changed files with 9 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -13,3 +13,6 @@ server/**/lib/
|
|||
server/**/bin/
|
||||
server/**/pyvenv.cfg
|
||||
__pycache__/
|
||||
|
||||
data/
|
||||
sql/
|
||||
|
|
|
@ -61,4 +61,4 @@ $safety-sketchy = #F3D75F
|
|||
$safety-unsafe = #F3985F
|
||||
$scrollbar-thumb-color = $main-color
|
||||
$scrollbar-bg-color = $input-enabled-background-color
|
||||
$transparency-grid-square-color = #F0F0F0
|
||||
$transparency-grid-square-color = #00000000
|
||||
|
|
|
@ -7,7 +7,8 @@ version: '2'
|
|||
services:
|
||||
|
||||
server:
|
||||
image: szurubooru/server:latest
|
||||
# image: szurubooru/server:latest
|
||||
build: server
|
||||
depends_on:
|
||||
- sql
|
||||
environment:
|
||||
|
@ -27,7 +28,8 @@ services:
|
|||
- "./server/config.yaml:/opt/app/config.yaml"
|
||||
|
||||
client:
|
||||
image: szurubooru/client:latest
|
||||
# image: szurubooru/client:latest
|
||||
build: client
|
||||
depends_on:
|
||||
- server
|
||||
environment:
|
||||
|
|
|
@ -99,7 +99,7 @@ class Image:
|
|||
"-f",
|
||||
"lavfi",
|
||||
"-i",
|
||||
"color=white:s=%dx%d" % (self.width, self.height),
|
||||
"color=black:s=%dx%d" % (self.width, self.height),
|
||||
"-i",
|
||||
"{path}",
|
||||
"-f",
|
||||
|
|
Loading…
Reference in a new issue