trifid/trifid-api/docker-compose.yml

9 lines
225 B
YAML
Raw Normal View History

2023-03-29 00:42:36 +00:00
# This is a docker-compose file to fire up a dev database with some persistence.
version: '3'
services:
postgres:
image: postgres
ports:
- "5432:5432"
volumes:
- "../pg_data:/var/lib/postgresql/data"