Skip to content

Commit 2682132

Browse files
committed
Merge branch 'main' of github.com:romkey/pdxhackerspace-hackstack
2 parents 000aba2 + 9aadda3 commit 2682132

3 files changed

Lines changed: 20 additions & 1 deletion

File tree

netboot/docker-compose.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
version: "2.1"
3+
services:
4+
netbootxyz:
5+
image: ghcr.io/netbootxyz/netbootxyz
6+
container_name: netbootxyz
7+
environment:
8+
- MENU_VERSION=2.0.47 # optional
9+
- NGINX_PORT=80 # optional
10+
- WEB_APP_PORT=3000 # optional
11+
volumes:
12+
- /opt/docker/netboot/data:/config # optional
13+
- /opt/docker/netboot/data/assets:/assets # optional
14+
ports:
15+
- 3030:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
16+
- 69:69/udp
17+
- 8088:80 # optional, destination should match ${NGINX_PORT} variable above.
18+
restart: unless-stopped

watchtower/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ WATCHTOWER_NOTIFICATION_URL=FILL IN SLACK WEBHOOK URL HERE OR COMMENT OUT FOR NO
22
TZ=America/Los_Angeles
33
# sometimes servers report "could not do head request" due to rate limiting - silence those warnings
44
WATCHTOWER_WARN_ON_HEAD_FAILURE=never
5+
WATCHTOWER_HOSTNAME=watchtower

watchtower/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
watchtower:
33
image: containrrr/watchtower
4-
hostname: watchtower
4+
hostname: "${WATCHTOWER_HOSTNAME}"
55
container_name: watchtower
66
restart: unless-stopped
77
command: --schedule "0 0 4 * * *"

0 commit comments

Comments
 (0)