Files
swisssign-challenge/docker-compose.yml
dylan 499735222d
All checks were successful
Build and Push Docker Image on Tag / Build and Push Docker Image (push) Successful in 2h1m18s
Fix MissingReflectionRegistrationError
2025-01-31 22:52:32 +01:00

15 lines
303 B
YAML

services:
postgres:
image: postgres:17-alpine
restart: always
environment:
POSTGRES_USER: dev
POSTGRES_PASSWORD: password
POSTGRES_DB: swisssignchallenge
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: