From 6c15ac11d91302a13fc0de6388a0140a18571fab Mon Sep 17 00:00:00 2001 From: Ulf Seltmann <seltmann@ub.uni-leipzig.de> Date: Tue, 7 Aug 2018 13:04:07 +0200 Subject: [PATCH] removed entrypoint --- Dockerfile | 2 -- Readme.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 96e4834..bc6d857 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,4 @@ FROM docker:latest -ENTRYPOINT [ "/usr/local/bin/deployer" ] -CMD [ "help" ] COPY assets/deployer /usr/local/bin/ WORKDIR /app RUN apk add --no-cache bash curl \ diff --git a/Readme.md b/Readme.md index 454da57..2722395 100644 --- a/Readme.md +++ b/Readme.md @@ -8,7 +8,7 @@ The tool tailors the commands according to the [Workflow of University Library o The tool is bundled with docker, kubectl and helm into a docker image itself. You can use it like this: ``` -docker run --rm --volume $PWD:/app ubleipzig/deployer:latest build --build-arg http_proxy=http://proxy.example.com:3128 --output image.tar.gz +docker run --rm --volume $PWD:/app ubleipzig/deployer:latest deployer build --build-arg http_proxy=http://proxy.example.com:3128 --output image.tar.gz ``` _the working directory inside the container is `/app`, so make sure to bind local files there._ -- GitLab