Files
backend/.devcontainer/docker-compose.postgres.yaml
T
2026-03-22 08:27:37 +00:00

13 lines
271 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: