8 lines
197 B
Docker
8 lines
197 B
Docker
|
FROM mysql:8.0.33-debian
|
||
|
|
||
|
LABEL MAINTAINER='beaconfire'
|
||
|
|
||
|
ENV HOST="" PORT="" MYSQL_USER="" MYSQL_PASSWORD="" REMAIN_DAYS=""
|
||
|
COPY entrypoint.sh /usr/local/bin
|
||
|
|
||
|
CMD [ "/usr/local/bin/entrypoint.sh" ]
|