Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: explicit ports, no-unbound-port-interfaces #8

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docker-compose-novpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
env_file:
- stack.env
ports:
- '8090:80'
- '0.0.0.0:8090:80'
restart: unless-stopped

jackett:
Expand All @@ -63,7 +63,7 @@ services:
env_file:
- stack.env
ports:
- '8686:8686'
- '0.0.0.0:8686:8686'
restart: unless-stopped

openbooks:
Expand All @@ -76,7 +76,7 @@ services:
env_file:
- stack.env
ports:
- '8099:80'
- '0.0.0.0:8099:80'
command: --name ${OPENBOOKS_DISPLAY_NAME} --persist
restart: unless-stopped

Expand All @@ -95,7 +95,7 @@ services:
- UMASK_SET=022
- VERSION=latest
ports:
- '32400:32400'
- '0.0.0.0:32400:32400'
restart: unless-stopped

radarr:
Expand Down Expand Up @@ -134,7 +134,7 @@ services:
env_file:
- stack.env
ports:
- '6080:6080'
- '0.0.0.0:6080:6080'
restart: unless-stopped

transmission:
Expand All @@ -146,14 +146,14 @@ services:
env_file:
- stack.env
ports:
- '7880:7878' # radarr 7878 used by SOAP
- '8083:8083' # calibre-web
- '8086:8081' # calibre
- '8087:8080' # calibre
- '8888:8888'
- '8989:8989' # sonarr
- '9091:9091'
- '9117:9117' # jackett
- '0.0.0.0:7880:7878' # radarr 7878 used by SOAP
- '0.0.0.0:8083:8083' # calibre-web
- '0.0.0.0:8086:8081' # calibre
- '0.0.0.0:8087:8080' # calibre
- '0.0.0.0:8888:8888'
- '0.0.0.0:8989:8989' # sonarr
- '0.0.0.0:9091:9091'
- '127.0.0.1:9117:9117' # jackett
restart: unless-stopped
cap_add:
- NET_ADMIN
Expand Down
26 changes: 13 additions & 13 deletions docker-compose-vpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ services:
env_file:
- stack.env
ports:
- '8092:8080' # calibre http
- '8093:8181' # calibre https
- '0.0.0.0:8092:8080' # calibre http
- '0.0.0.0:8093:8181' # calibre https
restart: unless-stopped

calibre-web:
Expand Down Expand Up @@ -40,7 +40,7 @@ services:
env_file:
- stack.env
ports:
- '8090:80'
- '0.0.0.0:8090:80'
restart: unless-stopped

jackett:
Expand Down Expand Up @@ -141,16 +141,16 @@ services:
env_file:
- stack.env
ports:
- '6080:6080' # soulseek
- '7880:7878' # radarr 7878 used by SOAP
- '8083:8083' # calibre-web
- '8099:80' # openbooks
- '8686:8686' # lidarr
- '8888:8888'
- '8989:8989' # sonarr
- '9091:9091'
- '9117:9117' # jackett
- '32400:32400' # plex
- '0.0.0.0:6080:6080' # soulseek
- '0.0.0.0:7880:7878' # radarr 7878 used by SOAP
- '0.0.0.0:8083:8083' # calibre-web
- '0.0.0.0:8099:80' # openbooks
- '0.0.0.0:8686:8686' # lidarr
- '0.0.0.0:8888:8888'
- '0.0.0.0:8989:8989' # sonarr
- '0.0.0.0:9091:9091'
- '127.0.0.1:9117:9117' # jackett
- '0.0.0.0:32400:32400' # plex
restart: always
logging:
driver: json-file
Expand Down