Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mysql/.env.dist
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Set pro options if applicable
# RUNDECK_IMAGE=rundeckpro/team:SNAPSHOT
# RUNDECK_IMAGE=rundeckpro/enterprise:5.3.0-rc1-20240508
# RUNDECK_LICENSE_FILE=
9 changes: 6 additions & 3 deletions mysql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@ version: '3'

services:
rundeck:
image: rundeck/rundeck:SNAPSHOT
image: ${RUNDECK_IMAGE}
links:
- mysql
environment:
TZ: America/Los_Angeles
RUNDECK_DATABASE_DRIVER: org.mariadb.jdbc.Driver
RUNDECK_DATABASE_USERNAME: rundeck
RUNDECK_DATABASE_PASSWORD: rundeck
RUNDECK_DATABASE_URL: jdbc:mysql://mysql/rundeck?autoReconnect=true&useSSL=false
RUNDECK_GRAILS_URL: localhost:4440
RUNDECK_GRAILS_URL: http://localhost:4440
volumes:
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- 4440:4440
mysql:
image: mysql:5.7
image: mysql:5.7.29
# Required for arm64 (Apple M1 chip)
platform: linux/x86_64
expose:
- 3306
environment:
Expand Down