chore: update docker setup to mount env file (#1270)
This commit is contained in:
parent
6b1d20449b
commit
885f5deebe
3 changed files with 49 additions and 6 deletions
|
|
@ -27,6 +27,12 @@ PGUSER="plane"
|
|||
PGPASSWORD="plane"
|
||||
PGHOST="plane-db"
|
||||
PGDATABASE="plane"
|
||||
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${PGHOST}/${PGDATABASE}
|
||||
|
||||
# Redis Settings
|
||||
REDIS_HOST="plane-redis"
|
||||
REDIS_PORT="6379"
|
||||
REDIS_URL="redis://${REDIS_HOST}:6379/"
|
||||
|
||||
# Email Settings
|
||||
EMAIL_HOST=""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue