diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8ac48ac --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM alpine:3.7 +RUN apk add --update --no-cache py3-yaml bash && pip3 install docker-compose \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7e143d5 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3" +services: + docker-update: + image: docker.clkl.de/docker/update:0.1_alpine + build: . + volumes: + - ./docker-compose.py:/docker-compose.py + - ./sample:/services + command: bash -c 'python3 /docker-compose.py /services/*' \ No newline at end of file