Files
backend/.devcontainer/docker-compose.postgres.yaml
T
2026-03-22 13:31:39 +00:00

14 lines
272 B
YAML

services:
postgres:
image: postgres:alpine
environment:
- POSTGRES_PASSWORD=password
network_mode: host
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: