dockerfiles/rundeck
kev 85056dccfb update ntopng 2019-07-08 11:22:44 +08:00
..
README.md update ntopng 2019-07-08 11:22:44 +08:00
docker-compose.yml update ntopng 2019-07-08 11:22:44 +08:00

rundeck

Rundeck Community Turn your operations procedures into self-service jobs. Safely give others the control and visibility they need.

docker-compose.yml

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 to use more environment variables.

up and running

$ mkdir -p data/{rundeck,ssh,postgres}
$ chown -R 1000:1000 data
$ chmod 700 data/ssh
$ docker-compose up -d
$ curl http://127.0.0.1:4440