-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (46 loc) · 1.41 KB
/
docker-compose.yml
File metadata and controls
52 lines (46 loc) · 1.41 KB
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
49
50
51
52
services:
deploy-v0.10:
build:
context: ./dockerfiles
dockerfile: Dockerfile.v0.10
network: host
platforms:
- linux/amd64
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
image: deathhorn/onboard_env:deploy-v0.10
hostname: ${HOSTNAME} # matches host's hostname
network_mode: "host" # use host network
privileged: true # equivalent to --privileged
deploy-v0.9:
build:
context: ./dockerfiles
dockerfile: Dockerfile.v0.9
network: host
platforms:
- linux/amd64
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
image: deathhorn/onboard_env:deploy-v0.9
profiles: ["archived"]
hostname: ${HOSTNAME} # matches host's hostname
network_mode: "host" # use host network
privileged: true # equivalent to --privileged
# ---- Older versions: not started by default ----
deploy-v0.5:
build:
context: ./dockerfiles
dockerfile: Dockerfile.v0.5
network: host
platforms:
- linux/amd64
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
image: deathhorn/onboard_env:deploy-v0.5
profiles: ["archived"]
hostname: ${HOSTNAME} # matches host's hostname
network_mode: "host" # use host network
privileged: true # equivalent to --privileged