diff --git a/Dockerfile b/build/Dockerfile similarity index 100% rename from Dockerfile rename to build/Dockerfile diff --git a/autodoc.sh b/build/autodoc.sh similarity index 100% rename from autodoc.sh rename to build/autodoc.sh diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9c80de8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +version: "2" + +volumes: + phyLinux-home: + +services: + autodoc: + restart: "no" + + image: ldericher/autodoc + build: + context: ./build + + volumes: + - "${PWD}/example_docs:/docs"