made transparency grid transparent
Some checks failed
Build Docker containers / Build and push client/ Docker container (push) Has been cancelled
Build Docker containers / Build and push server/ Docker container (push) Has been cancelled
Run unit tests / Run pytest for server/ (push) Failing after 32s

This commit is contained in:
Ulysia 2025-02-07 21:23:26 +01:00
parent 5ef62b21a0
commit 39bb53528c

View file

@ -11,6 +11,7 @@ services:
build: server
depends_on:
- sql
restart: unless-stopped
environment:
## These should be the names of the dependent containers listed below,
## or FQDNs/IP addresses if these services are running outside of Docker
@ -30,6 +31,7 @@ services:
client:
# image: szurubooru/client:latest
build: client
restart: unless-stopped
depends_on:
- server
environment:
@ -46,5 +48,7 @@ services:
environment:
POSTGRES_USER:
POSTGRES_PASSWORD:
# ports:
# - 5432:5432
volumes:
- "${MOUNT_SQL}:/var/lib/postgresql/data"