From 39bb53528c293d88e8dd0fdb5a254231bdc42bda Mon Sep 17 00:00:00 2001 From: ulyxie Date: Fri, 7 Feb 2025 21:23:26 +0100 Subject: [PATCH] made transparency grid transparent --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index efcdb643..60cb2393 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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"