Dockerfile and docker-compose.yml for MariaDB container, map/step-01.rb implementing the W3C Direct Mapping for all 9 tables.
8 lines
188 B
Docker
8 lines
188 B
Docker
FROM mariadb:10.11
|
|
|
|
ENV MARIADB_ROOT_PASSWORD=root
|
|
ENV MARIADB_DATABASE=migrants
|
|
ENV MARIADB_USER=migrants
|
|
ENV MARIADB_PASSWORD=1234
|
|
|
|
COPY teatre-migrants.sql /docker-entrypoint-initdb.d/
|