mirror of https://github.com/MISP/misp-docker
Update entrypoint command in docker-compose.yml
Change the -h parameter to use the database name specified in the .env file.
parent
b6017838a3
commit
3c8e41cd4f
|
@ -25,7 +25,7 @@ services:
|
||||||
- MISP_BASEURL=${MISP_BASEURL}
|
- MISP_BASEURL=${MISP_BASEURL}
|
||||||
- POSTFIX_RELAY_HOST=${POSTFIX_RELAY_HOST}
|
- POSTFIX_RELAY_HOST=${POSTFIX_RELAY_HOST}
|
||||||
- TIMEZONE=${TIMEZONE}
|
- TIMEZONE=${TIMEZONE}
|
||||||
entrypoint: "wait-for-it.sh -t 0 -h db -p 3306 -- /run.sh"
|
entrypoint: "wait-for-it.sh -t 0 -h ${MYSQL_DATABASE} -p 3306 -- /run.sh"
|
||||||
|
|
||||||
db:
|
db:
|
||||||
container_name: misp_db
|
container_name: misp_db
|
||||||
|
|
Loading…
Reference in New Issue