-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
69 lines (64 loc) · 2.1 KB
/
docker-compose.yaml
File metadata and controls
69 lines (64 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
# docker-default profile in docker-ce >= 29.4.3 trips a kernel oops in
# aa_inet_bind_perm on bind() under kernel 6.8.0-111. atftp probes crash
# on every call. Run unconfined until the kernel/profile is fixed.
security_opt:
- apparmor=unconfined
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