LHJ merge with latest release

This commit is contained in:
Ludwig Jordaan 2025-08-25 14:19:53 +00:00
parent 3769b6e8a5
commit 64dbd23e3d

View file

@ -1,3 +1,18 @@
x-netbox-base: &netbox
image: docker.io/netboxcommunity/netbox:${VERSION-v4.2-3.2.0}
depends_on:
- redis
- redis-cache
env_file: env/netbox.env
user: "unit:root"
volumes:
- ./configuration:/etc/netbox/config:z,ro
- netbox-media-files:/opt/netbox/netbox/media:rw
- netbox-reports-files:/opt/netbox/netbox/reports:rw
- netbox-scripts-files:/opt/netbox/netbox/scripts:rw
networks:
- netbox
services: services:
netbox: &netbox netbox: &netbox
image: docker.io/netboxcommunity/netbox:${VERSION-v4.3-3.3.0} image: docker.io/netboxcommunity/netbox:${VERSION-v4.3-3.3.0}
@ -6,6 +21,8 @@ services:
- redis - redis
- redis-cache - redis-cache
env_file: env/netbox.env env_file: env/netbox.env
#ports:
#- "8000:8080"
user: "unit:root" user: "unit:root"
deploy: deploy:
resources: resources:
@ -17,12 +34,12 @@ services:
- traefik.http.routers.netbox.rule=Host(`netbox.dfestaging.jennyme.co.za`) - traefik.http.routers.netbox.rule=Host(`netbox.dfestaging.jennyme.co.za`)
- traefik.http.routers.netbox.tls.certresolver=myresolver # Use the ACME resolver - traefik.http.routers.netbox.tls.certresolver=myresolver # Use the ACME resolver
- traefik.http.routers.netbox.entrypoints=websecure # Use the HTTPS entrypoint - traefik.http.routers.netbox.entrypoints=websecure # Use the HTTPS entrypoint
- traefik.http.services.netbox.loadbalancer.server.port=8000 - traefik.http.services.netbox.loadbalancer.server.port=8080
healthcheck: #healthcheck:
test: curl -f http://localhost:8080/login/ || exit 1 # test: curl -f http://localhost:8080/login/ || exit 1
start_period: 90s # start_period: 90s
timeout: 3s # timeout: 3s
interval: 15s # interval: 15s
volumes: volumes:
- ./configuration:/etc/netbox/config:z,ro - ./configuration:/etc/netbox/config:z,ro
- netbox-media-files:/opt/netbox/netbox/media:rw - netbox-media-files:/opt/netbox/netbox/media:rw
@ -33,36 +50,30 @@ services:
- dfe_network - dfe_network
netbox-worker: netbox-worker:
<<: *netbox <<: *netbox
depends_on: # depends_on:
netbox: # netbox:
condition: service_healthy # condition: service_healthy
command: command:
- /opt/netbox/venv/bin/python - /opt/netbox/venv/bin/python
- /opt/netbox/netbox/manage.py - /opt/netbox/netbox/manage.py
- rqworker - rqworker
healthcheck: #healthcheck:
test: ps -aux | grep -v grep | grep -q rqworker || exit 1 # test: ps -aux | grep -v grep | grep -q rqworker || exit 1
start_period: 20s # start_period: 20s
timeout: 3s # timeout: 3s
interval: 15s # interval: 15s
networks:
- netbox
- dfe_network
netbox-housekeeping: netbox-housekeeping:
<<: *netbox <<: *netbox
depends_on: # depends_on:
netbox: # netbox:
condition: service_healthy # condition: service_healthy
command: command:
- /opt/netbox/housekeeping.sh - /opt/netbox/housekeeping.sh
healthcheck: #healthcheck:
test: ps -aux | grep -v grep | grep -q housekeeping || exit 1 # test: ps -aux | grep -v grep | grep -q housekeeping || exit 1
start_period: 20s # start_period: 20s
timeout: 3s # timeout: 3s
interval: 15s # interval: 15s
networks:
- netbox
- dfe_network
# postgres # postgres
#postgres: #postgres:
@ -84,31 +95,29 @@ services:
- sh - sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env - -c # this is to evaluate the $REDIS_PASSWORD from the env
- valkey-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose - valkey-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
healthcheck: &redis-healthcheck # healthcheck: &redis-healthcheck
test: '[ $$(valkey-cli --pass "$${REDIS_PASSWORD}" ping) = ''PONG'' ]' # test: '[ $$(valkey-cli --pass "$${REDIS_PASSWORD}" ping) = ''PONG'' ]'
start_period: 5s # start_period: 5s
timeout: 3s # timeout: 3s
interval: 1s # interval: 1s
retries: 5 # retries: 5
env_file: env/redis.env env_file: env/redis.env
volumes: volumes:
- netbox-redis-data:/data - netbox-redis-data:/data
networks: networks:
- netbox - netbox
- dfe_network
redis-cache: redis-cache:
image: docker.io/valkey/valkey:8.1-alpine image: docker.io/valkey/valkey:8.1-alpine
command: command:
- sh - sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env - -c # this is to evaluate the $REDIS_PASSWORD from the env
- valkey-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose - valkey-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
healthcheck: *redis-healthcheck #healthcheck: *redis-healthcheck
env_file: env/redis-cache.env env_file: env/redis-cache.env
volumes: volumes:
- netbox-redis-cache-data:/data - netbox-redis-cache-data:/data
networks: networks:
- netbox - netbox
- dfe_network
volumes: volumes:
netbox-media-files: netbox-media-files: