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