mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
Merge branch 'docker-changes' into 'master'
[Docker] replace 'links' legacy feature with 'networks' See merge request mangadex-pub/mangadex_at_home!104
This commit is contained in:
commit
3bc62005ab
|
@ -7,6 +7,8 @@ services:
|
|||
image: "registry.gitlab.com/mangadex-pub/mangadex_at_home:2"
|
||||
ports:
|
||||
- 443:443
|
||||
networks:
|
||||
- mangadex-at-home
|
||||
volumes:
|
||||
- ./settings.yaml:/mangahome/settings.yaml:ro
|
||||
- ./data/cache/:/mangahome/data/
|
||||
|
@ -36,7 +38,7 @@ services:
|
|||
- 0
|
||||
ports:
|
||||
- 9090:9090
|
||||
links:
|
||||
networks:
|
||||
- mangadex-at-home
|
||||
volumes:
|
||||
- ./prometheus/:/etc/prometheus/:ro
|
||||
|
@ -55,8 +57,8 @@ services:
|
|||
- 0
|
||||
ports:
|
||||
- 3000:3000
|
||||
links:
|
||||
- prometheus
|
||||
networks:
|
||||
- mangadex-at-home
|
||||
volumes:
|
||||
- ./grafana/:/etc/grafana/:ro
|
||||
- ./data/grafana/:/var/lib/grafana/
|
||||
|
@ -67,3 +69,8 @@ services:
|
|||
options:
|
||||
max-size: "20m"
|
||||
max-file: "2"
|
||||
|
||||
networks:
|
||||
mangadex-at-home:
|
||||
driver: bridge
|
||||
name: mangadex-at-home
|
Loading…
Reference in a new issue