diff --git a/seriestroxide/.env.sample b/seriestroxide/.env.sample new file mode 100644 index 0000000..8608877 --- /dev/null +++ b/seriestroxide/.env.sample @@ -0,0 +1,13 @@ +# Uncomment and change the following variables if you want to use them. +#RESTART=unless-stopped +#SYNOLOGY_VOLUME=volume1 +#STACK_NAME=seriestroxide +#UID=1024 +#GID=101 +#TZ=Europe/Amsterdam +#SERIESTROXIDE_CONTAINER_NAME=SeriesTroxide +#SERIESTROXIDE_TAG=latest +#SERIESTROXIDE_PORT=3000 +#SERIESTROXIDE_TITLE=Series Troxide +#SERIESTROXIDE_CUSTOM_USER= +#SERIESTROXIDE_PASSWORD= diff --git a/seriestroxide/compose.yml b/seriestroxide/compose.yml new file mode 100644 index 0000000..076f727 --- /dev/null +++ b/seriestroxide/compose.yml @@ -0,0 +1,20 @@ +services: + # Series Troxide + seriestroxide: + container_name: ${SERIESTROXIDE_CONTAINER_NAME:-SeriesTroxide} + image: linuxserver/series-troxide:${SERIESTROXIDE_TAG:-latest} + restart: ${RESTART:-unless-stopped} + healthcheck: + test: curl -f http://localhost:${SERIESTROXIDE_PORT:-3000}/ || exit 1 + environment: + PUID: ${UID:-1024} + PGID: ${GID:-101} + TZ: ${TZ:-Europe/Amsterdam} + CUSTOM_PORT: ${SERIESTROXIDE_PORT:-3000} + TITLE: ${SERIESTROXIDE_TITLE:-Series Troxide} + CUSTOM_USER: ${SERIESTROXIDE_CUSTOM_USER:-} + PASSWORD: ${SERIESTROXIDE_PASSWORD:-} + ports: + - ${SERIESTROXIDE_PORT:-3000}:${SERIESTROXIDE_PORT:-3000} + volumes: + - /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-seriestroxide}/${SERIESTROXIDE_CONTAINER_NAME:-SeriesTroxide}/config:/config