diff --git a/lsio/booksonic-air/docker-compose.yaml b/lsio/booksonic-air/docker-compose.yaml index 8278ed9..ca71474 100644 --- a/lsio/booksonic-air/docker-compose.yaml +++ b/lsio/booksonic-air/docker-compose.yaml @@ -1,5 +1,5 @@ # [Booksonic-air](http://booksonic.org) is a platform for accessing the -# audibooks you own wherever you are. At the moment the platform consists of +# audiobooks you own wherever you are. At the moment the platform consists of # Booksonic Air - A server for streaming your audiobooks, successor to the # original Booksonic server and based on Airsonic. Booksonic App - An DSub based # Android app for connection to Booksonic-Air servers. . diff --git a/lsio/booksonic-air/docker-run.sh b/lsio/booksonic-air/docker-run.sh index 04740c4..e3790f7 100644 --- a/lsio/booksonic-air/docker-run.sh +++ b/lsio/booksonic-air/docker-run.sh @@ -1,5 +1,5 @@ # [Booksonic-air](http://booksonic.org) is a platform for accessing the -# audibooks you own wherever you are. At the moment the platform consists of +# audiobooks you own wherever you are. At the moment the platform consists of # Booksonic Air - A server for streaming your audiobooks, successor to the # original Booksonic server and based on Airsonic. Booksonic App - An DSub based # Android app for connection to Booksonic-Air servers. . diff --git a/lsio/couchpotato/docker-compose.yaml b/lsio/couchpotato/docker-compose.yaml deleted file mode 100644 index 23b4fec..0000000 --- a/lsio/couchpotato/docker-compose.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# [Couchpotato](https://couchpota.to/) is an automatic NZB and torrent -# downloader. You can keep a `movies I want` list and it will search for -# NZBs/torrents of these movies every X hours. Once a movie is found, it will -# send it to SABnzbd or download the torrent to a specified directory. - ---- -version: "2.1" -services: - couchpotato: - image: ghcr.io/linuxserver/couchpotato - container_name: couchpotato - environment: - # for GroupID - - PUID=${PUID:-1024} - # for UserID - - PGID=${PGID:-100} - # Specify a timezone to use for example Europe/Amsterdam - - TZ=${TZ:-Europe/Amsterdam} - volumes: - # Couchpotato Application Data. - - ${BASEDIR:-/volume1/docker}/couchpotato/config:/config - # Downloads Folder. - - ${BASEDIR:-/volume1/docker}/couchpotato/downloads:/downloads - # Movie Share. - - ${BASEDIR:-/volume1/docker}/couchpotato/movies:/movies - ports: - # http gui - - 5050:5050 - restart: unless-stopped diff --git a/lsio/couchpotato/docker-run.sh b/lsio/couchpotato/docker-run.sh deleted file mode 100644 index 1e2434d..0000000 --- a/lsio/couchpotato/docker-run.sh +++ /dev/null @@ -1,17 +0,0 @@ -# [Couchpotato](https://couchpota.to/) is an automatic NZB and torrent -# downloader. You can keep a `movies I want` list and it will search for -# NZBs/torrents of these movies every X hours. Once a movie is found, it will -# send it to SABnzbd or download the torrent to a specified directory. - -source ./.env -docker run -d \ - --name=couchpotato \ - -e PUID=${PUID:-1024} `# for GroupID` \ - -e PGID=${PGID:-100} `# for UserID` \ - -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ - -p 5050:5050 `# http gui` \ - -v ${BASEDIR:-/volume1/docker}/couchpotato/config:/config `# Couchpotato Application Data.` \ - -v ${BASEDIR:-/volume1/docker}/couchpotato/downloads:/downloads `# Downloads Folder.` \ - -v ${BASEDIR:-/volume1/docker}/couchpotato/movies:/movies `# Movie Share.` \ - --restart unless-stopped \ - ghcr.io/linuxserver/couchpotato diff --git a/lsio/couchpotato/run-once.sh b/lsio/couchpotato/run-once.sh deleted file mode 100644 index 19d9f1f..0000000 --- a/lsio/couchpotato/run-once.sh +++ /dev/null @@ -1,5 +0,0 @@ -ln -s ../docker-env.cfg ./.env -. ./.env -mkdir -p ${BASEDIR:-/volume1/docker}/couchpotato/config -mkdir -p ${BASEDIR:-/volume1/docker}/couchpotato/downloads -mkdir -p ${BASEDIR:-/volume1/docker}/couchpotato/movies diff --git a/lsio/pyload/docker-compose.yaml b/lsio/pyload/docker-compose.yaml deleted file mode 100644 index 564be45..0000000 --- a/lsio/pyload/docker-compose.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# [Pyload](https://pyload.net/) is a Free and Open Source download manager -# written in Python and designed to be extremely lightweight, easily extensible -# and fully manageable via web. - ---- -version: "2.1" -services: - pyload: - image: ghcr.io/linuxserver/pyload - container_name: pyload - environment: - # for GroupID - - PUID=${PUID:-1024} - # for UserID - - PGID=${PGID:-100} - # Specify a timezone to use for example Europe/Amsterdam - - TZ=${TZ:-Europe/Amsterdam} - volumes: - # pyLoad Configuration and files database - - ${BASEDIR:-/volume1/docker}/pyload/config:/config - # Destination of pyLoad downloads - - ${BASEDIR:-/volume1/docker}/pyload/downloads:/downloads - ports: - # Allows HTTP access to the application - - 8000:8000 - # pyLoad control port - - 7227:7227 # optional - restart: unless-stopped diff --git a/lsio/pyload/docker-run.sh b/lsio/pyload/docker-run.sh deleted file mode 100644 index 77a12b0..0000000 --- a/lsio/pyload/docker-run.sh +++ /dev/null @@ -1,16 +0,0 @@ -# [Pyload](https://pyload.net/) is a Free and Open Source download manager -# written in Python and designed to be extremely lightweight, easily extensible -# and fully manageable via web. - -source ./.env -docker run -d \ - --name=pyload \ - -e PUID=${PUID:-1024} `# for GroupID` \ - -e PGID=${PGID:-100} `# for UserID` \ - -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ - -p 8000:8000 `# Allows HTTP access to the application` \ - -p 7227:7227 `# optional` `# pyLoad control port` \ - -v ${BASEDIR:-/volume1/docker}/pyload/config:/config `# pyLoad Configuration and files database` \ - -v ${BASEDIR:-/volume1/docker}/pyload/downloads:/downloads `# Destination of pyLoad downloads` \ - --restart unless-stopped \ - ghcr.io/linuxserver/pyload diff --git a/lsio/pyload/run-once.sh b/lsio/pyload/run-once.sh deleted file mode 100644 index 933344e..0000000 --- a/lsio/pyload/run-once.sh +++ /dev/null @@ -1,4 +0,0 @@ -ln -s ../docker-env.cfg ./.env -. ./.env -mkdir -p ${BASEDIR:-/volume1/docker}/pyload/config -mkdir -p ${BASEDIR:-/volume1/docker}/pyload/downloads