2025-03-12 23:06:31 +00:00
|
|
|
services:
|
|
|
|
app:
|
|
|
|
image: mcr.microsoft.com/devcontainers/python:3.12-bookworm
|
|
|
|
volumes:
|
2025-03-13 21:47:18 +00:00
|
|
|
- ../..:/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:
|