diff --git a/lsio/netbox/docker-compose.yaml b/lsio/netbox/docker-compose.yaml index d975894..b4b8c94 100644 --- a/lsio/netbox/docker-compose.yaml +++ b/lsio/netbox/docker-compose.yaml @@ -59,7 +59,7 @@ services: # A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {}) - REMOTE_AUTH_DEFAULT_PERMISSIONS= # optional volumes: - # config directory volume mapping + # Persistent config files - ${BASEDIR:-/volume1/docker}/netbox/config:/config ports: # will map the container's port 8000 to port 8000 on the host diff --git a/lsio/netbox/docker-run.sh b/lsio/netbox/docker-run.sh index 1ffc37c..0c8ae48 100644 --- a/lsio/netbox/docker-run.sh +++ b/lsio/netbox/docker-run.sh @@ -32,6 +32,6 @@ docker run -d \ -e REMOTE_AUTH_DEFAULT_GROUPS= `# optional` `# The list of groups to assign a new user account when created using remote authentication (optional, default: [])` \ -e REMOTE_AUTH_DEFAULT_PERMISSIONS= `# optional` `# A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {})` \ -p 8000:8000 `# will map the container's port 8000 to port 8000 on the host` \ - -v ${BASEDIR:-/volume1/docker}/netbox/config:/config `# config directory volume mapping` \ + -v ${BASEDIR:-/volume1/docker}/netbox/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/netbox