Files
arbeitszeitmessung/Docker/docker-compose.dev.yml
Tom Tröger 1daf4db167
All checks were successful
Tests / Run Go Tests (push) Successful in 1m44s
fixed premission problem after making migrations executed by go
2026-01-17 21:41:46 +01:00

28 lines
545 B
YAML

name: arbeitszeitmessung-dev
services:
db:
volumes:
- ../DDB:/var/lib/postgresql/data
- ${POSTGRES_PATH}/initdb:/docker-entrypoint-initdb.d
ports:
- 5432:5432
adminer:
image: adminer
restart: unless-stopped
ports:
- 8001:8080
backend:
environment:
NO_CORS: true
swagger:
image: swaggerapi/swagger-ui
restart: unless-stopped
environment:
SWAGGER_JSON: /api/swagger.json
ports:
- 8002:8080
volumes:
- ./arbeitszeitmessung.json:/api/swagger.json