Skip to content

Commit

Permalink
Upgrade awscli, apprise. Update README.md. Add docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
trnubo committed Mar 22, 2023
1 parent 01dac58 commit 01da544
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN set -x \
;

# Install AWS CLI
ENV AWS_CLI_VERSION=1.22.85 AWS_CLI_CHECKSUM=f6f8f3635daa82049d02b828169e43c9db09a9fc791fdf4582d62c74060baf32
ENV AWS_CLI_VERSION=1.27.96 AWS_CLI_CHECKSUM=c8085a4701a63d99f44fcc2e8eab78a5264ee0a2705f4e0193317428dd5ede55
RUN set -x \
&& apt-get update \
&& apt-get -y install python3 python3-venv unzip \
Expand Down Expand Up @@ -108,7 +108,7 @@ RUN set -x \
&& apt-get install -y python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& pip install apprise==0.9.7 \
&& pip install apprise==1.3.0 \
;

# Download plugins
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ docker run --rm -it --name rundeck -p 4440:4440 \
-v $(pwd)/test/lib:/var/lib/rundeck \
-v $(pwd)/test/var:/var/rundeck \
-v $(pwd)/test/log:/var/log/rundeck \
docker.io/panubo/rundeck:latest
quay.io/panubo/rundeck:latest
```

The container bootstrap does not support SSL. It is intended that this image is run behind an SSL terminating proxy such as Nginx, HAProxy or a cloud load balancer service.
Expand Down
22 changes: 22 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
version: "3.9" # optional since v1.27.0
services:
rundeck:
image: panubo/rundeck:latest
ports:
- "4440:4440"
volumes:
- ./test/config:/config
- rundeck-lib-data:/var/lib/rundeck/data
- rundeck-lib-logs:/var/lib/rundeck/var
- rundeck-lib-logs:/var/lib/rundeck/logs
- rundeck-home:/home/rundeck
- rundeck-var:/var/rundeck
- rundeck-logs:/var/log/rundeck

volumes:
rundeck-lib-data: {}
rundeck-lib-logs: {}
rundeck-home: {}
rundeck-var: {}
rundeck-logs: {}

0 comments on commit 01da544

Please sign in to comment.