Merge branch 'add-portainer' into 'master'
Add portainer See merge request rogs/yams!4
This commit is contained in:
commit
b269f8d03e
@ -20,6 +20,7 @@ This script installs the following software:
|
|||||||
- [[https://www.bazarr.media/][Bazarr]]
|
- [[https://www.bazarr.media/][Bazarr]]
|
||||||
- [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
|
- [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
|
||||||
- [[https://github.com/qdm12/gluetun][gluetun]]
|
- [[https://github.com/qdm12/gluetun][gluetun]]
|
||||||
|
- [[https://www.portainer.io/][Portainer]]
|
||||||
|
|
||||||
With this combination, you can create a fully functional media server that is going to download,
|
With this combination, you can create a fully functional media server that is going to download,
|
||||||
categorize, subtitle and serve your favorite shows and movies.
|
categorize, subtitle and serve your favorite shows and movies.
|
||||||
@ -132,17 +133,17 @@ They are the ones doing the real work, I just created a docker-compose file and
|
|||||||
|
|
||||||
Just let them know YAMS sent you there 😎
|
Just let them know YAMS sent you there 😎
|
||||||
|
|
||||||
* todo [1/16]
|
* todo [2/16]
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:ID: eba4712e-fa8a-42c8-bc32-b593141c99a4
|
:ID: eba4712e-fa8a-42c8-bc32-b593141c99a4
|
||||||
:END:
|
:END:
|
||||||
(in order)
|
(in order)
|
||||||
|
|
||||||
- [X] Support for multiple media servers (Jellyfin and Plex). [Done ✅]
|
- [X] Support for multiple media servers (Jellyfin and Plex). [Done ✅]
|
||||||
|
- [X] Add [[https://www.portainer.io/][Portainer]]. [Done ✅]
|
||||||
- [ ] Add update functionality (~yams update~). [Working on it 👨💻]
|
- [ ] Add update functionality (~yams update~). [Working on it 👨💻]
|
||||||
- [ ] Consider moving to Alpine images (might not be possible without a big change on the docker-compose file).
|
- [ ] Consider moving to Alpine images (might not be possible without a big change on the docker-compose file).
|
||||||
- [ ] Add Jackett as an "yams extra".
|
- [ ] Add Jackett as an "yams extra".
|
||||||
- [ ] Add [[https://www.portainer.io/][Portainer]].
|
|
||||||
- [ ] Add [[https://github.com/Fallenbagel/jellyseerr][jellyseer]] or [[https://ombi.io/][Omby]].
|
- [ ] Add [[https://github.com/Fallenbagel/jellyseerr][jellyseer]] or [[https://ombi.io/][Omby]].
|
||||||
- [ ] Add a dashboard like [[https://docs.organizr.app/installation/installing-organizr][Organizr]].
|
- [ ] Add a dashboard like [[https://docs.organizr.app/installation/installing-organizr][Organizr]].
|
||||||
- [ ] Consider adding [[https://lidarr.audio/][Lidarr]] and [[https://readarr.com/][Readarr]].
|
- [ ] Consider adding [[https://lidarr.audio/][Lidarr]] and [[https://readarr.com/][Readarr]].
|
||||||
@ -168,6 +169,7 @@ Just let them know YAMS sent you there 😎
|
|||||||
- [[https://www.qbittorrent.org/][qBittorrent]]
|
- [[https://www.qbittorrent.org/][qBittorrent]]
|
||||||
- [[https://www.bazarr.media/][Bazarr]]
|
- [[https://www.bazarr.media/][Bazarr]]
|
||||||
- [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
|
- [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
|
||||||
|
- [[https://www.portainer.io/][Portainer]]
|
||||||
- My friends:
|
- My friends:
|
||||||
+ [[https://github.com/xploshioOn][xploshioOn]]
|
+ [[https://github.com/xploshioOn][xploshioOn]]
|
||||||
+ [[https://github.com/norlis][norlis]]
|
+ [[https://github.com/norlis][norlis]]
|
||||||
|
@ -116,6 +116,18 @@ services:
|
|||||||
- SERVER_COUNTRIES=<vpn_country>
|
- SERVER_COUNTRIES=<vpn_country>
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
# Portainer helps debugging and monitors the containers
|
||||||
|
portainer:
|
||||||
|
image: portainer/portainer-ce
|
||||||
|
container_name: portainer
|
||||||
|
ports:
|
||||||
|
- 9000:9000
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
- <install_location>/config/portainer:/data
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
# Watchtower is going to keep our instances updated
|
# Watchtower is going to keep our instances updated
|
||||||
watchtower:
|
watchtower:
|
||||||
image: containrrr/watchtower
|
image: containrrr/watchtower
|
||||||
|
@ -60,6 +60,7 @@ running_services_location() {
|
|||||||
echo "Prowlarr: http://$host_ip:9696/"
|
echo "Prowlarr: http://$host_ip:9696/"
|
||||||
echo "Bazarr: http://$host_ip:6767/"
|
echo "Bazarr: http://$host_ip:6767/"
|
||||||
echo "$media_service: http://$host_ip:$media_service_port/"
|
echo "$media_service: http://$host_ip:$media_service_port/"
|
||||||
|
echo "Portainer: http://$host_ip:9000/"
|
||||||
}
|
}
|
||||||
|
|
||||||
# ============================================================================================
|
# ============================================================================================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user