Update Dockerfile references and image names in docker-compose.override.yml; modify requirements in README-INSTALL.md

This commit is contained in:
bboerni2 2025-09-26 10:33:01 +02:00
parent 017cfec1d3
commit c01891efa4
2 changed files with 8 additions and 8 deletions

View file

@ -27,10 +27,9 @@ netbox-docker unterstützt eine separate **`requirements-plugins.txt`**, die bei
### 2.2 `requirements-plugins.txt` ### 2.2 `requirements-plugins.txt`
```text ```text
# Versions bewusst pinned
netbox-topology-views>=4.2.0,<5.0.0 netbox-topology-views>=4.2.0,<5.0.0
netbox-device-lifecycle-mgmt>=1.1.0,<2.0.0 netbox-lifecycle>=1.1.0,<2.0.0
netbox-plugin-prometheus-sd>=0.3.0,<1.0.0 netbox-plugin-prometheus-sd>=1.2.0
netbox-qrcode>=0.0.17,<1.0.0 netbox-qrcode>=0.0.17,<1.0.0
``` ```
@ -42,5 +41,6 @@ Um einen ersten **Administrator-Account** (Superuser) anzulegen, kann der Befehl
**Command (copy-fähig):** **Command (copy-fähig):**
```bash ```bash
docker compose exec netbox python3 /opt/netbox/netbox/manage.py createsuperuser docker exec -it netbox-docker-netbox-1 \
/opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py createsuperuser
``` ```

View file

@ -4,9 +4,9 @@ services:
# WICHTIG: eigenes Image bauen # WICHTIG: eigenes Image bauen
build: build:
context: . context: .
dockerfile: Dockerfile-plugins dockerfile: Dockerfile-withplugins
# lokaler Name statt Upstream-Tag # lokaler Name statt Upstream-Tag
image: netbox-plugins:local image: netbox-withplugins:local
pull_policy: never pull_policy: never
ports: ports:
- "8000:8080" - "8000:8080"
@ -23,7 +23,7 @@ services:
netbox-worker: netbox-worker:
restart: unless-stopped restart: unless-stopped
image: netbox-plugins:local image: netbox-withplugins:local
pull_policy: never pull_policy: never
logging: logging:
driver: "json-file" driver: "json-file"
@ -36,7 +36,7 @@ services:
netbox-housekeeping: netbox-housekeeping:
restart: unless-stopped restart: unless-stopped
image: netbox-plugins:local image: netbox-withplugins:local
pull_policy: never pull_policy: never
environment: environment:
DB_WAIT_TIMEOUT: "180" DB_WAIT_TIMEOUT: "180"