Last active
November 11, 2018 02:35
-
-
Save mogya/4599cda3716a5e168cd00b2582dd4db6 to your computer and use it in GitHub Desktop.
start jordan/rundeck with JST timezone.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
volume: | |
image: alpine:latest | |
entrypoint: /bin/true | |
volumes: | |
- ./etc/rundeck:/etc/rundeck | |
- ./var/rundeck:/var/rundeck | |
- ./var/lib/rundeck/.ssh:/var/lib/rundeck/.ssh | |
- ./var/lib/rundeck/logs:/var/lib/rundeck/logs | |
- ./var/lib/rundeck/var/storage:/var/lib/rundeck/var/storage | |
- ./var/lib/mysql:/var/lib/mysql | |
- ./var/log/rundeck:/var/log/rundeck | |
- ./opt/rundeck-plugins:/opt/rundeck-plugins | |
app: | |
image: jordan/rundeck:latest | |
volumes_from: | |
- volume | |
environment: | |
LANG: ja_JP.UTF-8 | |
TZ: Asia/Tokyo | |
RDECK_JVM: -Dfile.encoding=UTF-8 -Duser.timezone=Asia/Tokyo | |
SERVER_URL: http://rundeck.mogya.local:4440 | |
RUNDECK_ADMIN_PASSWORD: mogya123 | |
volumes: | |
- /Volumes/home-2/backup:/var/backup/ | |
ports: | |
- 4440:4440 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment