mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 03:38:41 +00:00
Update README.md, remove container host networking mode
This commit is contained in:
parent
4bfd67e780
commit
4bc7a68254
2 changed files with 2 additions and 3 deletions
|
@ -9,7 +9,7 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of docker co
|
||||||
* Any number of Samba shares for you to store your stuff
|
* Any number of Samba shares for you to store your stuff
|
||||||
* A BitTorrent client
|
* A BitTorrent client
|
||||||
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr
|
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr
|
||||||
* Media streaming via Plex
|
* Media streaming via Plex or Emby
|
||||||
* A Docker host with Portainer for image and container management
|
* A Docker host with Portainer for image and container management
|
||||||
* Various ways to see stats about your NAS - Glances, dashboards in Grafana
|
* Various ways to see stats about your NAS - Glances, dashboards in Grafana
|
||||||
* A backup tool - allows scheduled backups to Amazon S3, OneDrive, Dropbox etc
|
* A backup tool - allows scheduled backups to Amazon S3, OneDrive, Dropbox etc
|
||||||
|
@ -20,6 +20,7 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of docker co
|
||||||
|
|
||||||
- [CouchPotato](https://couchpota.to/) for downloading and managing movies
|
- [CouchPotato](https://couchpota.to/) for downloading and managing movies
|
||||||
- [Duplicati](https://www.duplicati.com/) for backing up your stuff
|
- [Duplicati](https://www.duplicati.com/) for backing up your stuff
|
||||||
|
- [Emby](https://emby.media/) - Media streaming and management
|
||||||
- [Glances](https://nicolargo.github.io/glances/) for seeing the state of your system via a web browser
|
- [Glances](https://nicolargo.github.io/glances/) for seeing the state of your system via a web browser
|
||||||
- [Grafana](https://github.com/grafana/grafana) - Dashboarding tool
|
- [Grafana](https://github.com/grafana/grafana) - Dashboarding tool
|
||||||
- [InfluxDB](https://github.com/influxdata/influxdb) - Time series database used for stats collection
|
- [InfluxDB](https://github.com/influxdata/influxdb) - Time series database used for stats collection
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
file:
|
file:
|
||||||
path: "{{ item }}"
|
path: "{{ item }}"
|
||||||
state: directory
|
state: directory
|
||||||
# mode: 0755
|
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ emby_config_directory }}"
|
- "{{ emby_config_directory }}"
|
||||||
|
|
||||||
|
@ -16,7 +15,6 @@
|
||||||
- "{{ emby_movies_directory }}:/movies:rw"
|
- "{{ emby_movies_directory }}:/movies:rw"
|
||||||
- "{{ emby_tv_directory }}:/tv:rw"
|
- "{{ emby_tv_directory }}:/tv:rw"
|
||||||
- "/etc/timezone:/etc/timezone:ro"
|
- "/etc/timezone:/etc/timezone:ro"
|
||||||
network_mode: "host"
|
|
||||||
ports:
|
ports:
|
||||||
- "8096:8096" # HTTP port
|
- "8096:8096" # HTTP port
|
||||||
- "8920:8920" # HTTPS port
|
- "8920:8920" # HTTPS port
|
||||||
|
|
Loading…
Reference in a new issue