You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On branch release
Your branch is up to date with 'origin/release'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: configuration/plugins.py
modified: env/netbox.env
Untracked files:
(use "git add <file>..." to include in what will be committed)
Dockerfile-Plugins
Netbox.yml
plugin_requirements.txt
ssl/
no changes added to commit (use "git add" and/or "git commit -a")
services:
netbox:
image: netbox:latest-pluginsports:
- "8000:8080"# If you want the Nginx unit status page visible from the# outside of the container add the following port mapping:# - "8001:8081"healthcheck:
# Time for which the health check can fail after the container is started.# This depends mostly on the performance of your database. On the first start,# when all tables need to be created the start_period should be higher than on# subsequent starts. For the first start after major version upgrades of NetBox# the start_period might also need to be set higher.# Default value in our docker-compose.yml is 60sstart_period: 120s# environment:# SKIP_SUPERUSER: "false"# SUPERUSER_API_TOKEN: ""# SUPERUSER_EMAIL: ""# SUPERUSER_NAME: ""# SUPERUSER_PASSWORD: ""build:
context: .dockerfile: Dockerfile-Pluginsrestart: unless-stoppednetbox-worker:
image: netbox:latest-pluginsbuild:
context: .dockerfile: Dockerfile-Pluginsrestart: unless-stoppednetbox-housekeeping:
image: netbox:latest-pluginsbuild:
context: .dockerfile: Dockerfile-Pluginsrestart: unless-stoppedpostgres:
restart: unless-stoppedredis:
restart: unless-stoppedredis-cache:
restart: unless-stoppedtls:
image: caddy:2-alpinedepends_on:
- netboxvolumes:
- ./ssl/localhost+2.pem:/etc/ssl/private/localhost.crt:ro,z
- ./ssl/localhost+2-key.pem:/etc/ssl/private/localhost.key:ro,z
- ./ssl/Caddyfile:/etc/caddy/Caddyfile:roports:
- 80:80# Allows for http redirection
- 443:443restart: unless-stopped
The text was updated successfully, but these errors were encountered:
KPTheProf
changed the title
Release 3.0.0 pull netbox 4.0.11 and not 4.1.0 as advertised
Release 3.0.0 pulls netbox 4.0.11 and not 4.1.0 as advertised
Sep 4, 2024
Current Behavior
Ran the following commands.
git pull
docker compose pull
docker compose build --no-cache
docker compose up --detach
The version of Netbox that is now running is 4.0.11 and not 4.1
Expected Behavior
Expect docker version of Netbox to be 4.1
Docker Compose Version
Docker Compose version v2.29.2-desktop.2
Docker Version
The git Revision
ab2a7bc
The git Status
Startup Command
docker compose up --detach
NetBox Logs
Content of docker-compose.override.yml
The text was updated successfully, but these errors were encountered: