-
Notifications
You must be signed in to change notification settings - Fork 82
/
docker-compose.yml
37 lines (35 loc) · 1.14 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3'
services:
rundeck:
image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT}
links:
- sqlserver
environment:
RUNDECK_GRAILS_URL: http://localhost:${RUNDECK_PORT:-4441}
RUNDECK_DATABASE_DRIVER: com.microsoft.sqlserver.jdbc.SQLServerDriver
RUNDECK_DATABASE_USERNAME: sa
RUNDECK_DATABASE_PASSWORD: RundeckPassw0rd
RUNDECK_DATABASE_URL: jdbc:sqlserver://sqlserver;DatabaseName=rundeck;autoReconnect=true;useSSL=false
RUNDECK_DATABASE_DIALECT: org.hibernate.dialect.SQLServer2012Dialect
volumes:
- ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key
ports:
- "${RUNDECK_PORT:-4441}:4440"
depends_on:
- sqlserver
sqlserver:
build:
context: ./sqlserver
expose:
- 1433
ports:
- 1433:1433
environment:
- ACCEPT_EULA=Y
- MSSQL_PID=Express
- SA_PASSWORD=RundeckPassw0rd
command: /bin/bash ./entrypoint.sh
volumes:
- mssql_data:/var/opt/mssql
volumes:
mssql_data: