1 Commits

Author SHA1 Message Date
tom
0e1e0b2de0 added volume, to expose logs on host
All checks were successful
Tests / Run Go Tests (push) Successful in 33s
2025-09-15 13:25:33 +02:00
2 changed files with 5 additions and 0 deletions

View File

@@ -30,8 +30,11 @@ services:
NO_CORS: true NO_CORS: true
ports: ports:
- ${EXPOSED_PORT}:8080 - ${EXPOSED_PORT}:8080
volumes:
- ../logs:/app/Backend/logs
depends_on: depends_on:
- db - db
swagger: swagger:
image: swaggerapi/swagger-ui image: swaggerapi/swagger-ui
restart: unless-stopped restart: unless-stopped

View File

@@ -28,4 +28,6 @@ services:
- ${EXPOSED_PORT}:8080 - ${EXPOSED_PORT}:8080
depends_on: depends_on:
- db - db
volumes:
- ../logs:/app/Backend/logs
restart: unless-stopped restart: unless-stopped