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