Is it possible to create the confluence and MySQL docker containers from a Dockerfile?
Suppose I'm able to manually create the confluence and MySQL docker containers.
I run them with `docker run` commands like:
docker run -v /local/disk0/confluence/:/data -v /local/disk0/confluence/il-confluence-ld1/conf_data/conflu/:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 rbarak/confluence:mysql-connector-ava-5.1.49
and
docker run -v /data/confluence:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 rbarak/confluence:mysql-connector-java-8.0.25
Both these commands run docker images that went through multiple enhancement stages, and I was wandering is someone managed to create the final images needed for confluence (e.g., that reference imported confluence data) using a Dockerfile.