Coder Social home page Coder Social logo

docker-rundeck's Introduction

Rundeck Docker Image

This dockerfile describes a basic installation of rundeck with external database.

Image details

  • Based on phusion/baseimage
  • Uses init process and startup scripts as defined in the baseimage
  • SSH is disabled by default

Startup

# start postgresql database to use
docker run -d \
	-v /etc/localtime:/etc/localtime:ro \
	-v /etc/timezone:/etc/timezone:ro \
	-e POSTGRES_USER=rundeck \
	-e POSTGRES_PASSWORD=rundeck \
	--name rundeckdb -h rundeckdb \
	 postgres:9.4.5

# start rundeck container and bind it to local ip - rely on default env variables
docker run --rm -ti \
	-p 127.0.0.1:4440:4440 \
	--link rundeckdb:db \
	--name rundeck -h rundeck \
	 mbopm/rundeck

WebUI Login credentials

user: admin

password: admin

Environment variables

SERVER_URL

URL where the application can be found. This url is used by the application to generate target URLs. Example http://my-rundeck.example.org or http://local:4440. You won't be able to use the application without an appropriate value.

DATABASE_URL

Connection string for the database to use. Defaults to jdbc:postgresql://db/rundeck.

DATABASE_USER

User to connect to the database. Defaults to rundeck.

DATABASE_PASS

Password of the database user to use. Defaults to rundeck.

Volumes

Descriptions of defined volumes in this image.

/var/rundeck

Here are the project files if you create any projects within rundeck.

/etc/rundeck

Configuration files.

/var/lib/rundeck/.ssh

SSH-keys used in rundeck. If nothing provided a new one is generated during container startup.

/var/log/rundeck

Logfiles of rundeck.

License

By using this image you agree to the oracle java license that would be displayed during installation.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.