You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
406 B
24 lines
406 B
---
|
|
version: "3"
|
|
|
|
services:
|
|
netbox:
|
|
image: ghcr.io/linuxserver/netbox
|
|
container_name: netbox
|
|
hostname: netbox
|
|
restart: always
|
|
|
|
depends_on:
|
|
- redis
|
|
ports:
|
|
- "3009:8000"
|
|
volumes:
|
|
- ./etc/netbox/config:/config
|
|
env_file: env/netbox.env
|
|
|
|
redis:
|
|
image: redis:6.2-alpine
|
|
container_name: netbox_redis
|
|
hostname: netbox_redis
|
|
restart: always
|
|
...
|