Files
homelab/docker-compose.yaml
T
talksik cc79163524 rename
2023-08-14 14:47:00 -07:00

39 lines
757 B
YAML

version: '3.3'
networks:
nginx:
services:
nginx:
image: nginx:latest
restart: unless-stopped
container_name: nginx
ports:
- 80:80
- 443:443
# kubernetes
- 6000:6000 # audio route
- 6001:6001 # video route
- 6002:6002 # presence route
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./src/index.html:/usr/share/nginx/html/index.html
networks:
- nginx
registry:
image: registry:2
restart: unless-stopped
container_name: registry
volumes:
- /mnt/registry:/var/lib/registry
networks:
- nginx
rancher:
image: rancher/rancher:latest
restart: unless-stopped
container_name: rancher
privileged: true
networks:
- nginx