mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
chore: use default blank values for db and redis variables in compose.yaml
This commit is contained in:
parent
96843b833e
commit
1215c3767b
1 changed files with 4 additions and 4 deletions
|
|
@ -33,10 +33,10 @@ services:
|
||||||
bench set-config -g redis_socketio "redis://$$REDIS_QUEUE";
|
bench set-config -g redis_socketio "redis://$$REDIS_QUEUE";
|
||||||
bench set-config -gp socketio_port $$SOCKETIO_PORT;
|
bench set-config -gp socketio_port $$SOCKETIO_PORT;
|
||||||
environment:
|
environment:
|
||||||
DB_HOST: ${DB_HOST}
|
DB_HOST: ${DB_HOST:-}
|
||||||
DB_PORT: ${DB_PORT}
|
DB_PORT: ${DB_PORT:-}
|
||||||
REDIS_CACHE: ${REDIS_CACHE}
|
REDIS_CACHE: ${REDIS_CACHE:-}
|
||||||
REDIS_QUEUE: ${REDIS_QUEUE}
|
REDIS_QUEUE: ${REDIS_QUEUE:-}
|
||||||
SOCKETIO_PORT: 9000
|
SOCKETIO_PORT: 9000
|
||||||
depends_on: {}
|
depends_on: {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue