2023-10-24 04:47:50 +00:00
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
|
|
|
2023-10-29 02:36:05 +00:00
|
|
|
homarr:
|
|
|
|
container_name: homarr
|
|
|
|
image: ghcr.io/ajnart/homarr:latest
|
2023-10-24 04:47:50 +00:00
|
|
|
restart: unless-stopped
|
2023-10-29 02:36:05 +00:00
|
|
|
volumes:
|
|
|
|
- /dockers/homarr/configs:/app/data/configs
|
|
|
|
- /dockers/homarr/icons:/app/public/icons
|
2023-10-24 04:47:50 +00:00
|
|
|
|
2023-11-13 05:46:36 +00:00
|
|
|
tandoori:
|
|
|
|
container_name: tandoori
|
|
|
|
restart: always
|
|
|
|
image: vabene1111/recipes
|
|
|
|
env_file:
|
2023-11-13 06:02:09 +00:00
|
|
|
- stack.env
|
2023-10-28 05:52:25 +00:00
|
|
|
volumes:
|
2023-11-13 05:46:36 +00:00
|
|
|
- /dockers/tandoori/staticfiles:/opt/recipes/staticfiles
|
|
|
|
# Do not make this a bind mount, see https://docs.tandoor.dev/install/docker/#volumes-vs-bind-mounts
|
|
|
|
- /dockers/tandoori/nginx_config:/opt/recipes/nginx/conf.d
|
|
|
|
- /dockers/tandoori/mediafiles:/opt/recipes/mediafiles
|
2023-10-28 05:52:25 +00:00
|
|
|
|
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
|
|
|
|
|
2023-11-13 05:46:36 +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
|
|
|
networks:
|
|
|
|
default:
|
2023-10-31 02:39:30 +00:00
|
|
|
name: dockers_default
|
|
|
|
external: true
|