2 Commits

Author SHA1 Message Date
1f242d3568 Merge 9d46f6cf58 into 376f687c38 2025-04-28 19:14:41 +00:00
9d46f6cf58 server-specific changes 2025-04-28 19:14:35 +00:00
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

@ -5,7 +5,7 @@
services:
server:
image: szurubooru/server:latest
build: server
depends_on:
- sql
environment:
@ -23,9 +23,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:
@ -35,6 +36,7 @@ services:
- "${MOUNT_DATA}:/data:ro"
ports:
- "${PORT}:80"
restart: unless-stopped
sql:
image: postgres:11-alpine