server-specific changes

This commit is contained in:
recordcrash
2025-04-28 19:14:35 +00:00
parent 0825866dce
commit 9d46f6cf58
4 changed files with 4 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 526 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -7,7 +7,7 @@ version: '2'
services:
server:
image: szurubooru/server:latest
build: server
depends_on:
- sql
environment:
@ -25,9 +25,10 @@ services:
volumes:
- "${MOUNT_DATA}:/data"
- "./server/config.yaml:/opt/app/config.yaml"
restart: unless-stopped
client:
image: szurubooru/client:latest
build: client
depends_on:
- server
environment:
@ -37,6 +38,7 @@ services:
- "${MOUNT_DATA}:/data:ro"
ports:
- "${PORT}:80"
restart: unless-stopped
sql:
image: postgres:11-alpine