-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
65 lines (60 loc) · 1.85 KB
/
docker-compose.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
version: "3.8"
services:
netboot-tftp:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-tftp:latest
pull_policy: always
container_name: netboot-tftp
volumes:
- $HOME/netboot/config/menus:/srv/tftp/ipxe
ports:
- 69:69/udp #TFTP
restart: unless-stopped
netboot-http:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-http:latest
pull_policy: always
container_name: netboot-http
# This corresponds to the `master` user on the netboot server
user: 1000:1000
volumes:
- $HOME/netboot/assets:/assets
ports:
- 80:80 #Assets
restart: unless-stopped
netboot-cleaner:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-cleaner:latest
container_name: netboot-cleaner
pull_policy: always
# This corresponds to the `master` user on the netboot server
user: 1000:1000
env_file:
- $HOME/cleaner.env
volumes:
- $HOME/netboot/assets:/cleaning
restart: unless-stopped
netboot-sync:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-sync:latest
pull_policy: always
container_name: netboot-sync
user: 1000:1000
env_file:
- $HOME/sync.env
volumes:
- $HOME/netboot/assets:/home/syncer/
restart: unless-stopped
netboot-monitoring:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-monitoring:latest
container_name: netboot-monitoring
env_file:
- $HOME/monitoring.env
restart: unless-stopped
netboot-build-main-ipxe-menus:
image: dgpublicimagesprod.azurecr.io/planetexpress/netboot-ipxe-menu-generator:latest
pull_policy: always
container_name: netboot-build-main-ipxe-menus
env_file:
- $HOME/ipxe-menu-generator.env
volumes:
- $HOME/netboot/assets:/assets
- $HOME/netboot/config/menus:/menus
restart:
unless-stopped