-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (48 loc) · 1.07 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
38
39
40
41
42
43
44
45
46
47
48
version: "3"
services:
db:
image: mcr.microsoft.com/mssql/server
environment:
SA_PASSWORD: ""
ACCEPT_EULA: "N"
# Prevent SQL Server from consuming the defult of 80% physical memory.
MSSQL_MEMORY_LIMIT_MB: 2048
ports:
- 1401:1433
healthcheck:
test:
[
"CMD",
"/opt/mssql-tools/bin/sqlcmd",
"-U",
"sa",
"-P",
"thisisn'ttherightpassword",
"-Q",
"select 1",
]
interval: 10s
retries: 10
volumes:
- ./mssql:/var/opt/mssql/data
octopus-server:
image: octopusdeploy/octopusdeploy:latest
privileged: true
environment:
ACCEPT_EULA: "N"
OCTOPUS_SERVER_NODE_NAME: ""
DB_CONNECTION_STRING: ""
ADMIN_USERNAME: ""
ADMIN_PASSWORD: ""
ADMIN_EMAIL: ""
OCTOPUS_SERVER_BASE64_LICENSE: ""
MASTER_KEY: ""
ports:
- 8080:8080
- 10943:10943
depends_on:
- db
volumes:
- ./taskLogs:/taskLogs
- ./artifacts:/artifacts
- ./repository:/repository