Cleanup useless files

This commit is contained in:
Jean Froment 2019-03-03 15:53:19 +01:00
parent 339a5afa27
commit 362750cb3d
8 changed files with 3 additions and 57 deletions

View File

@ -2,9 +2,6 @@
A collection of Dockerfiles and a docker-compose configuration to set up a A collection of Dockerfiles and a docker-compose configuration to set up a
seedbox and personal media server. seedbox and personal media server.
## Credits
Main credits go to [Kelvin Chen](https://github.com/Kelvin-Chen/seedbox) who started the development of its own seedbox using Docker. Mine was first a fork of Kelvin's one, but I made some serious changes in the code and plan to add even more tools and services that keeping this project as a fork started to have less sense as code diverged.
## Included Applications ## Included Applications
| Application | Web Interface | | Application | Web Interface |
-----------------------|----------------------------| -----------------------|----------------------------|
@ -17,7 +14,7 @@ Main credits go to [Kelvin Chen](https://github.com/Kelvin-Chen/seedbox) who sta
| JDownloader | jdownloader.yourdomain.com | | JDownloader | jdownloader.yourdomain.com |
| Filerun | explore.yourdomain.com | | Filerun | explore.yourdomain.com |
| Tautulli (plexPy) | tautulli.yourdomain.com | | Tautulli (plexPy) | tautulli.yourdomain.com |
| NextCloud | nextcloud.yourdomain.com | | NextCloud (WIP) | nextcloud.yourdomain.com |
| Portainer | portainer.yourdomain.com | | Portainer | portainer.yourdomain.com |
The front-end reverse proxy (Traefik) routes based on the lowest level subdomain (e.g. The front-end reverse proxy (Traefik) routes based on the lowest level subdomain (e.g.
@ -62,7 +59,8 @@ script to open a tunnel with port forwarding in order to access Plex Tools direc
your browser. your browser.
## PlexPass ## PlexPass
More info soon. Just set the `VERSION` environment variable to `latest` on the Plex service (enabled by default).
See https://hub.docker.com/r/linuxserver/plex.
## Where is my data? ## Where is my data?
All data is saved in the docker volumes `seedbox_config` or All data is saved in the docker volumes `seedbox_config` or

View File

@ -1,27 +0,0 @@
#!/usr/bin/env bash
# This script builds all the containers locally as an alternative to pulling
# from the docker registry.
cd ${0%/*}
usage() {
echo "./build-all.sh [-n] [-q]"
echo " -n Do not use cache when building docker images"
echo " -q Quiet mode"
exit 1
}
ARGS=
while getopts ":nq" opt; do
case $opt in
n) ARGS="$ARGS --no-cache" ;;
q) ARGS="$ARGS --quiet" ;;
\?) usage ;;
esac
done
docker build -t fromenje/seedbox:plex $ARGS Dockerfiles/plex &
wait

View File

@ -75,26 +75,6 @@ services:
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}' - 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
- 'traefik.enable=true' - 'traefik.enable=true'
# plex:
# image: fromenje/seedbox:plex
# build: Dockerfiles/plex
# restart: always
# networks:
# - web
# ports:
# - "32400:32400"
# volumes:
# - config:/config
# - torrents:/torrents
# env_file:
# - config
# labels:
# - 'traefik.backend=plex'
# - 'traefik.port=32400'
# - 'traefik.frontend.rule=Host:plex.${TRAEFIK_DOMAIN}'
# - 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
# - 'traefik.enable=true'
plex: plex:
image: linuxserver/plex image: linuxserver/plex
restart: always restart: always

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
# Push all images to the docker registry.
docker push fromenje/seedbox:plex