Added pocketbase and snibox to development, netdata to admin

This commit is contained in:
2023-06-20 18:21:00 -04:00
parent 0d26400c40
commit 8cf39e567d
2 changed files with 45 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ services:
volumes:
- /portainer/FileBrowser:/config
- /media:/myfiles
restart: unless-stopped
homarr:
image: ghcr.io/ajnart/homarr:latest
networks:
@@ -16,7 +17,35 @@ services:
- /portainer/homarr/icons:/app/public/icons
environment:
- PORT=7575
restart: unless-stopped
netdata:
image: netdata/netdata:latest
ports:
- "19999:19999"
volumes:
- netdatacache:/var/cache/netdata
- netdatalib:/var/lib/netdata
- netdataconfig:/etc/netdata
- /etc/group:/host/etc/group
- /etc/os-release:/host/etc/os-release
- /etc/passwd:/host/etc/passwd
- /proc:/host/proc
- /sys:/host/sys
environment:
- NETDATA_LISTENER_PORT=19999
- DOCKER_GRP=netdata
- DOCKER_USR=netdata
restart: unless-stopped
networks:
nginx:
external: true
volumes:
netdatacache:
external: true
netdatalib:
external: true
netdataconfig:
external: true