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: volumes:
- /portainer/FileBrowser:/config - /portainer/FileBrowser:/config
- /media:/myfiles - /media:/myfiles
restart: unless-stopped
homarr: homarr:
image: ghcr.io/ajnart/homarr:latest image: ghcr.io/ajnart/homarr:latest
networks: networks:
@@ -16,7 +17,35 @@ services:
- /portainer/homarr/icons:/app/public/icons - /portainer/homarr/icons:/app/public/icons
environment: environment:
- PORT=7575 - 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: networks:
nginx: nginx:
external: true external: true
volumes:
netdatacache:
external: true
netdatalib:
external: true
netdataconfig:
external: true

View File

@@ -76,6 +76,20 @@ services:
- ENV_DOCKER_REGISTRY_HOST=docker-registry - ENV_DOCKER_REGISTRY_HOST=docker-registry
- ENV_DOCKER_REGISTRY_PORT=5000 - ENV_DOCKER_REGISTRY_PORT=5000
restart: unless-stopped restart: unless-stopped
pocketbase-sandbox:
image: djdietrick/pocketbase:latest
ports:
- "8090:8090"
volumes:
- pocketbase-sandbox:/pb_data
restart: unless-stopped
snibox:
image: snowmean/snibox-sqlite:latest
ports:
- "3010:3000"
volumes:
- /portainer/snibox:/app/db/database
restart: unless-stopped
networks: networks:
nginx: nginx:
@@ -87,3 +101,5 @@ volumes:
external: true external: true
jenkins-data: jenkins-data:
external: true external: true
pocketbase-sandbox:
external: true