No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
docker/my-dojo/mysql/Dockerfile
|
@ -11,3 +11,6 @@ RUN chmod u+x /update-db.sh && \ |
|
|
|
|
|
|
|
|
# Copy content of mysql scripts into /docker-entrypoint-initdb.d |
|
|
# Copy content of mysql scripts into /docker-entrypoint-initdb.d |
|
|
COPY ./db-scripts/ /docker-entrypoint-initdb.d |
|
|
COPY ./db-scripts/ /docker-entrypoint-initdb.d |
|
|
|
|
|
|
|
|
|
|
|
# Remove template extension from SQL init schema |
|
|
|
|
|
RUN bash -c 'for f in /docker-entrypoint-initdb.d/*.tpl; do mv -- "$f" "${f%.tpl}"; done' |
|
|