docker-compose.yaml (view raw)
1services:
2 app:
3 build: .
4 image: ghcr.io/birabittoh/fixyoutube:main
5 container_name: fixyoutube
6 restart: unless-stopped
7 ports:
8 - 127.0.0.1:1111:80
9
10 swag:
11 image: ghcr.io/linuxserver/swag
12 container_name: swag
13 cap_add:
14 - NET_ADMIN
15 env_file:
16 - docker/swag.env
17 volumes:
18 - /etc/config/swag:/config
19 - ./docker/fixyoutube.subdomain.conf:/config/nginx/proxy-confs/fixyoutube.subdomain.conf:ro
20 ports:
21 - 443:443
22 - 80:80
23 restart: unless-stopped