0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-19 03:01:27 -05:00

🎨 Rename db container

This commit is contained in:
mathieu.brunot 2019-02-18 01:53:00 +01:00
parent 6df7610e9c
commit 3b3bd2fb45
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -6,9 +6,9 @@ volumes:
db_data:
services:
db:
uxdb:
image: postgres:latest
container_name: db
container_name: uxdb
restart: always
ports:
- "5432:5432"
@ -27,7 +27,7 @@ services:
container_name: uxbackend
#restart: always
depends_on:
- db
- uxdb
ports:
- "6060:6060"
environment:
@ -37,7 +37,7 @@ services:
- UXBOX_DATABASE_USERNAME="uxbox"
- UXBOX_DATABASE_PASSWORD="uxbox_postgres_password"
- UXBOX_DATABASE_NAME="uxbox"
- UXBOX_DATABASE_SERVER="db"
- UXBOX_DATABASE_SERVER="uxdb"
- UXBOX_DATABASE_PORT=5432
# Mail setup
- UXBOX_EMAIL_REPLY_TO="no-reply@uxbox.io"