Files
elo/.dev/docker-compose.yml
Matthew Kaminski 5cb67786bf
Some checks are pending
Build Crate / build (push) Waiting to run
Add initial database schema and references
Also look into users a bit
2024-08-14 01:20:48 -04:00

19 lines
261 B
YAML

services:
db:
image: postgres:15.3-alpine
restart: unless-stopped
ports:
- 5432:5432
networks:
- db
volumes:
- postgres-data:/var/lib/postgresql/data
env_file:
- .env
volumes:
postgres-data:
networks:
db: