2023-10-24 04:47:50 +00:00
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
|
|
|
|
|
|
dashy:
|
|
|
|
image: lissy93/dashy
|
|
|
|
container_name: Dashy
|
|
|
|
restart: unless-stopped
|
|
|
|
# Pass in your config file below, by specifying the path on your host machine
|
|
|
|
#volumes:
|
|
|
|
# - /dockers/dashy/public:/app/public
|
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
- UID=1000
|
|
|
|
- GID=1000
|
|
|
|
healthcheck:
|
|
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
|
|
interval: 1m30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
|
|
|
start_period: 40s
|
|
|
|
|
2023-10-28 05:52:25 +00:00
|
|
|
vaultwarden:
|
|
|
|
image: vaultwarden/server:latest
|
|
|
|
container_name: vaultwarden
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- /dockers/vaultwarden:/data/
|
|
|
|
|
2023-10-24 04:47:50 +00:00
|
|
|
thelounge:
|
|
|
|
container_name: thelounge
|
|
|
|
image: thelounge/thelounge:latest
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- /dockers/thelounge:/var/opt/thelounge # bind lounge config from the host's file system
|
|
|
|
|
|
|
|
unifi-controller:
|
|
|
|
image: lscr.io/linuxserver/unifi-controller
|
|
|
|
container_name: unifi-controller
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
- MEM_LIMIT=1024 #optional
|
|
|
|
- MEM_STARTUP=1024 #optional
|
|
|
|
volumes:
|
|
|
|
- /dockers/unifi:/config
|
|
|
|
ports:
|
|
|
|
- 3478:3478/udp
|
|
|
|
- 10001:10001/udp
|
|
|
|
- 8080:8080
|
|
|
|
- 8443:8443
|
|
|
|
- 1900:1900/udp #optional
|
|
|
|
- 8843:8843 #optional
|
|
|
|
- 8880:8880 #optional
|
|
|
|
- 6789:6789 #optional
|
|
|
|
- 5514:5514/udp #optional
|
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
external:
|
|
|
|
name: dockers_default
|