0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00

🎨 Change default DB password in docker-compose sample

This commit is contained in:
mathieu.brunot 2019-02-16 03:01:38 +01:00
parent 858993d8e2
commit b2dc669876
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -14,7 +14,7 @@ services:
environment:
- "POSTGRES_DB=uxbox"
- "POSTGRES_USER=uxbox"
- "POSTGRES_PASSWORD=youshouldoverwritethiswithsomethingelse"
- "POSTGRES_PASSWORD=uxbox_postgres_password"
volumes:
- uxbox_db:/var/lib/postgresql/data
@ -31,7 +31,7 @@ services:
- "UXBOX_HTTP_SERVER_DEBUG=false"
# Database setup
- "UXBOX_DATABASE_USERNAME=uxbox"
- "UXBOX_DATABASE_PASSWORD=youshouldoverwritethiswithsomethingelse"
- "UXBOX_DATABASE_PASSWORD=uxbox_postgres_password"
- "UXBOX_DATABASE_NAME=uxbox"
- "UXBOX_DATABASE_SERVER=db"
- "UXBOX_DATABASE_PORT=5432"