From 5171715e18a45d5957315d99d71bfe8c53c919b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Fri, 20 Sep 2019 09:16:38 +0200 Subject: [PATCH] docker-compose support --- Dockerfile => build/Dockerfile | 0 autodoc.sh => build/autodoc.sh | 0 docker-compose.yml | 15 +++++++++++++++ 3 files changed, 15 insertions(+) rename Dockerfile => build/Dockerfile (100%) rename autodoc.sh => build/autodoc.sh (100%) create mode 100644 docker-compose.yml 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"