-
-
Notifications
You must be signed in to change notification settings - Fork 59
Closed
Labels
Description
When adding drizzle, the adder creates a compose file for the db but doesn't add a volume to persist the data, is it worthwhile to add it to the template?
services:
db:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: mysecretpassword
POSTGRES_DB: local
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: