mirror of
https://github.com/fradelg/docker-mysql-cron-backup.git
synced 2025-01-18 16:22:33 +01:00
Global MySQL port and timeout variable
This commit is contained in:
parent
fe1028a205
commit
d5eca7afc5
1 changed files with 3 additions and 2 deletions
|
@ -13,8 +13,9 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI
|
|||
|
||||
ENV CRON_TIME="0 3 * * sun" \
|
||||
MYSQL_HOST="mysql" \
|
||||
MYSQL_PORT="3306"
|
||||
MYSQL_PORT="3306" \
|
||||
TIMEOUT="10s"
|
||||
|
||||
VOLUME ["/backup"]
|
||||
|
||||
CMD dockerize -wait tcp://${MYSQL_HOST}:3306 /run.sh
|
||||
CMD dockerize -wait tcp://${MYSQL_HOST}:${MYSQL_PORT} -timeout ${TIMEOUT} /run.sh
|
||||
|
|
Loading…
Reference in a new issue