79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
version: '3.7'
|
|
services:
|
|
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /dockers/homarr/configs:/app/data/configs
|
|
- /dockers/homarr/icons:/app/public/icons
|
|
|
|
mealie:
|
|
container_name: mealie
|
|
image: ghcr.io/mealie-recipes/mealie:v1.0.0-RC1.1
|
|
restart: always
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1000M #
|
|
volumes:
|
|
- /dockers/mealie:/app/data/
|
|
environment:
|
|
# Set Backend ENV Variables Here
|
|
- ALLOW_SIGNUP=true
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/New_York
|
|
- MAX_WORKERS=1
|
|
- WEB_CONCURRENCY=1
|
|
- BASE_URL=https://mealie.theburgess.family
|
|
|
|
# Database Settings
|
|
- DB_ENGINE=postgres
|
|
- POSTGRES_USER=mealie
|
|
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD
|
|
- POSTGRES_SERVER=postgres
|
|
- POSTGRES_PORT=5432
|
|
- POSTGRES_DB=mealie
|
|
|
|
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
|
|
|
|
vaultwarden:
|
|
image: vaultwarden/server:latest
|
|
container_name: vaultwarden
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /dockers/vaultwarden:/data/
|
|
|
|
networks:
|
|
default:
|
|
name: dockers_default
|
|
external: true |