mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-04-23 12:08:49 +02:00
add rundeck
This commit is contained in:
parent
ca2838c316
commit
aa41553de3
@ -298,6 +298,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] postgrest/postgrest
|
- [x] postgrest/postgrest
|
||||||
- [x] registry
|
- [x] registry
|
||||||
- [x] rocket.chat
|
- [x] rocket.chat
|
||||||
|
- [x] rundeck/rundeck
|
||||||
- [x] scrapinghub/splash
|
- [x] scrapinghub/splash
|
||||||
- [ ] selenium
|
- [ ] selenium
|
||||||
- [ ] hub
|
- [ ] hub
|
||||||
|
36
rundeck/README.md
Normal file
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
|
11
rundeck/docker-compose.yml
Normal file
11
rundeck/docker-compose.yml
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user