Skip to content

Commit

Permalink
Place env dist in each project
Browse files Browse the repository at this point in the history
Use tty
Update s3 logstore envar
  • Loading branch information
ProTip committed Aug 23, 2018
1 parent 180f966 commit 95675b5
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 1 deletion.
3 changes: 3 additions & 0 deletions basic/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_LICENSE_FILE=
4 changes: 4 additions & 0 deletions basic/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ version: '3'
services:
rundeck:
image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT}
tty: true
environment:
RUNDECK_PLUGIN_CLUSTER_AUTOTAKEOVER_ENABLED: "true"
volumes:
- data:/home/rundeck/server/data
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440

Expand Down
3 changes: 2 additions & 1 deletion cloud/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ services:
RUNDECK_IMAGE: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT}
links:
- mysql
tty: true
environment:
RUNDECK_GRAILS_URL: http://localhost
RUNDECK_SERVER_FORWARDED: 'true'
RUNDECK_DATABASE_DRIVER: com.mysql.jdbc.Driver
RUNDECK_DATABASE_USERNAME: rundeck
RUNDECK_DATABASE_PASSWORD: rundeck
RUNDECK_DATABASE_URL: jdbc:mysql://mysql/rundeck?autoReconnect=true&useSSL=false
RUNDECK_PLUGIN_EXECUTIONFILESTORAGE: com.rundeck.rundeckpro.amazon-s3
RUNDECK_PLUGIN_EXECUTIONFILESTORAGE_NAME: com.rundeck.rundeckpro.amazon-s3
RUNDECK_PLUGIN_EXECUTIONFILESTORAGE_S3_BUCKET: ${RUNDECK_PLUGIN_EXECUTIONFILESTORAGE_S3_BUCKET}
RUNDECK_PLUGIN_EXECUTIONFILESTORAGE_S3_REGION: ${RUNDECK_PLUGIN_EXECUTIONFILESTORAGE_S3_REGION}
RUNDECK_STORAGE_CONVERTER_1_CONFIG_PASSWORD: ${RUNDECK_STORAGE_PASSWORD}
Expand Down
3 changes: 3 additions & 0 deletions ldap-combined/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_LICENSE_FILE=
3 changes: 3 additions & 0 deletions ldap-combined/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:
image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT}
links:
- ldap
tty: true
environment:
RUNDECK_JAAS_MODULES_0: JettyCombinedLdapLoginModule
RUNDECK_JAAS_LDAP_FLAG: sufficient
Expand All @@ -17,6 +18,8 @@ services:

RUNDECK_JAAS_MODULES_1: PropertyFileLoginModule
RUNDECK_JAAS_FILE_FLAG: sufficient
volumes:
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440
ldap:
Expand Down
3 changes: 3 additions & 0 deletions ldap/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_LICENSE_FILE=
3 changes: 3 additions & 0 deletions ldap/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ services:
image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT}
links:
- ldap
tty: true
environment:
RUNDECK_JAAS_MODULES_0: JettyCombinedLdapLoginModule
RUNDECK_JAAS_LDAP_PROVIDERURL: ldap://ldap:389
RUNDECK_JAAS_LDAP_BINDDN: cn=admin,dc=rdtest,dc=com
RUNDECK_JAAS_LDAP_BINDPASSWORD: AdminPass123
RUNDECK_JAAS_LDAP_USERBASEDN: ou=users,dc=rdtest,dc=com
RUNDECK_JAAS_LDAP_ROLEBASEDN: ou=roles,dc=rdtest,dc=com
volumes:
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440
ldap:
Expand Down
3 changes: 3 additions & 0 deletions mysql/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_LICENSE_FILE=
2 changes: 2 additions & 0 deletions mysql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ services:
RUNDECK_DATABASE_USERNAME: rundeck
RUNDECK_DATABASE_PASSWORD: rundeck
RUNDECK_DATABASE_URL: jdbc:mysql://mysql/rundeck?autoReconnect=true&useSSL=false
volumes:
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440
mysql:
Expand Down
3 changes: 3 additions & 0 deletions oracle/.env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_LICENSE_FILE=
1 change: 1 addition & 0 deletions oracle/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ services:
RUNDECK_DATABASE_URL: jdbc:oracle:thin:@oracle:1521/orclpdb1.localdomain
volumes:
- ./lib:/home/rundeck/server/lib
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440
oracle:
Expand Down

0 comments on commit 95675b5

Please sign in to comment.