Revert to user-defined network
This commit is contained in:
parent
2c3ddc88c4
commit
46161aab01
|
@ -1,5 +1,8 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
|
networks:
|
||||||
|
main:
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
config:
|
config:
|
||||||
driver: local
|
driver: local
|
||||||
|
@ -11,7 +14,8 @@ services:
|
||||||
image: fromenje/seedbox:frontend
|
image: fromenje/seedbox:frontend
|
||||||
build: Dockerfiles/frontend
|
build: Dockerfiles/frontend
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
|
@ -24,7 +28,8 @@ services:
|
||||||
image: fromenje/seedbox:rtorrent
|
image: fromenje/seedbox:rtorrent
|
||||||
build: Dockerfiles/rtorrent
|
build: Dockerfiles/rtorrent
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
ports:
|
ports:
|
||||||
- "49161:49161"
|
- "49161:49161"
|
||||||
- "49161:49161/udp"
|
- "49161:49161/udp"
|
||||||
|
@ -37,7 +42,8 @@ services:
|
||||||
image: fromenje/seedbox:deluge
|
image: fromenje/seedbox:deluge
|
||||||
build: Dockerfiles/deluge
|
build: Dockerfiles/deluge
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
ports:
|
ports:
|
||||||
- "8112:8112"
|
- "8112:8112"
|
||||||
- "58846:58846"
|
- "58846:58846"
|
||||||
|
@ -51,7 +57,8 @@ services:
|
||||||
image: fromenje/seedbox:h5ai
|
image: fromenje/seedbox:h5ai
|
||||||
build: Dockerfiles/h5ai
|
build: Dockerfiles/h5ai
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
ports:
|
ports:
|
||||||
- "12333:12333"
|
- "12333:12333"
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -64,7 +71,8 @@ services:
|
||||||
image: fromenje/seedbox:plex
|
image: fromenje/seedbox:plex
|
||||||
build: Dockerfiles/plex
|
build: Dockerfiles/plex
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
ports:
|
ports:
|
||||||
- "32400:32400"
|
- "32400:32400"
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -77,7 +85,8 @@ services:
|
||||||
image: fromenje/seedbox:sonarr
|
image: fromenje/seedbox:sonarr
|
||||||
build: Dockerfiles/sonarr
|
build: Dockerfiles/sonarr
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: "host"
|
networks:
|
||||||
|
- main
|
||||||
volumes:
|
volumes:
|
||||||
- config:/config
|
- config:/config
|
||||||
- torrents:/torrents
|
- torrents:/torrents
|
||||||
|
|
Loading…
Reference in New Issue