+ creating the architecture + some doc about volumes and bind mounts + added rule for iso in gitignore + understood a little more about dockerfile environment
11 lines
157 B
Docker
11 lines
157 B
Docker
|
|
# build this image from parent image alpine:3.16.1
|
|
# available there : https://hub.docker.com/_/alpine
|
|
FROM alpine:3.16.1
|
|
WORKDIR /mariadb
|
|
#ENV PORT 80
|
|
|
|
|
|
|
|
|