simple-ocpp-cs/.devcontainer/backend/docker-compose.yml

20 lines
413 B
YAML
Raw Normal View History

2025-03-12 23:06:31 +00:00
services:
app:
image: mcr.microsoft.com/devcontainers/python:3.12-bookworm
volumes:
- ../..:/simple-ocpp-cs:cached
2025-03-12 23:06:31 +00:00
command: sleep infinity
db:
image: postgres:17
restart: unless-stopped
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
volumes:
postgres-data: