diff --git a/Dockerfile b/Dockerfile index 96e4834258d32c7d907a12c0af165bf1cbb4e183..bc6d8576ee5e5a8cc15c7bc3d63fa20c530e0f71 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 454da57806e5a5612cfe1a9d2aad8131bd4e0328..272239557a766518fe49df85a94823afd9d00193 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._