1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00

add rundeck

This commit is contained in:
kev 2019-05-26 17:26:14 +08:00
parent ca2838c316
commit aa41553de3
3 changed files with 48 additions and 0 deletions

@ -298,6 +298,7 @@ A collection of delicious docker recipes.
- [x] postgrest/postgrest
- [x] registry
- [x] rocket.chat
- [x] rundeck/rundeck
- [x] scrapinghub/splash
- [ ] selenium
- [ ] hub

36
rundeck/README.md Normal file

@ -0,0 +1,36 @@
rundeck
=======
[Rundeck Community][1] Turn your operations procedures into self-service jobs.
Safely give others the control and visibility they need.
## docker-compose.yml
```yaml
rundeck:
image: rundeck/rundeck:3.0.22
ports:
- "4440:4440"
volumes:
- ./data/ssh:/home/rundeck/.ssh
- ./data/rundeck:/home/rundeck/server/data
environment:
- RUNDECK_SECURITY_HTTPHEADERS_ENABLED=false
mem_limit: 1024m
restart: always
```
Read [this][2] to use more environment variables.
## up and running
```bash
$ mkdir -p data/{rundeck,ssh}
$ chown -R 1000:1000 data
$ chmod 700 data/ssh
$ docker-compose up -d
$ curl http://127.0.0.1:4440
```
[1]: https://www.rundeck.com/open-source
[2]: https://github.com/rundeck/rundeck/tree/master/docker/official

@ -0,0 +1,11 @@
rundeck:
image: rundeck/rundeck:3.0.22
ports:
- "4440:4440"
volumes:
- ./data/ssh:/home/rundeck/.ssh
- ./data/rundeck:/home/rundeck/server/data
environment:
- RUNDECK_SECURITY_HTTPHEADERS_ENABLED=false
mem_limit: 1024m
restart: always