61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
|
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
|
||
|
|
||
|
bitwarden:
|
||
|
image: bitwardenrs/server:latest
|
||
|
container_name: bitwarden
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- /dockers/bitwarden:/data/
|
||
|
|
||
|
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
|