diff --git a/lsio/lychee/docker-compose.yaml b/lsio/lychee/docker-compose.yaml index c92af49..787a174 100644 --- a/lsio/lychee/docker-compose.yaml +++ b/lsio/lychee/docker-compose.yaml @@ -33,9 +33,9 @@ services: - /path/to/pictures:/pictures environment: - DB_HOST=mariadb - - DB_USER=lychee - - DB_PASS=dbpassword - - DB_NAME=lychee + - DB_USERNAME=lychee + - DB_PASSWORD=dbpassword + - DB_DATABASE=lychee - DB_PORT=3306 - PGID=1000 - PUID=1000 diff --git a/lsio/pidgin/docker-compose.yaml b/lsio/pidgin/docker-compose.yaml new file mode 100644 index 0000000..8eac6fa --- /dev/null +++ b/lsio/pidgin/docker-compose.yaml @@ -0,0 +1,24 @@ +# [Pidgin](https://pidgin.im/) is a chat program which lets you log into +# accounts on multiple chat networks simultaneously. This means that you can be +# chatting with friends on XMPP and sitting in an IRC channel at the same time. + +--- +version: "2.1" +services: + pidgin: + image: ghcr.io/linuxserver/pidgin + container_name: pidgin + 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: + # Users home directory in the container, stores local files and settings + - ${BASEDIR:-/volume1/docker}/pidgin/config:/config + ports: + # Pidgin desktop gui. + - 3000:3000 + restart: unless-stopped diff --git a/lsio/pidgin/docker-run.sh b/lsio/pidgin/docker-run.sh new file mode 100644 index 0000000..c9e160c --- /dev/null +++ b/lsio/pidgin/docker-run.sh @@ -0,0 +1,14 @@ +# [Pidgin](https://pidgin.im/) is a chat program which lets you log into +# accounts on multiple chat networks simultaneously. This means that you can be +# chatting with friends on XMPP and sitting in an IRC channel at the same time. + +source ./.env +docker run -d \ + --name=pidgin \ + -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 3000:3000 `# Pidgin desktop gui.` \ + -v ${BASEDIR:-/volume1/docker}/pidgin/config:/config `# Users home directory in the container, stores local files and settings` \ + --restart unless-stopped \ + ghcr.io/linuxserver/pidgin diff --git a/lsio/pidgin/run-once.sh b/lsio/pidgin/run-once.sh new file mode 100644 index 0000000..2edca38 --- /dev/null +++ b/lsio/pidgin/run-once.sh @@ -0,0 +1,3 @@ +ln -s ../docker-env.cfg ./.env +. ./.env +mkdir -p ${BASEDIR:-/volume1/docker}/pidgin/config diff --git a/lsio/sabnzbd/docker-compose.yaml b/lsio/sabnzbd/docker-compose.yaml index fd0b59d..419caab 100644 --- a/lsio/sabnzbd/docker-compose.yaml +++ b/lsio/sabnzbd/docker-compose.yaml @@ -20,7 +20,7 @@ services: # Local path for sabnzbd config files. - ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config # Local path for finished downloads. - - ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads + - ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads # optional # Local path for incomplete-downloads. - ${BASEDIR:-/volume1/docker}/sabnzbd/incomplete-downloads:/incomplete-downloads # optional ports: diff --git a/lsio/sabnzbd/docker-run.sh b/lsio/sabnzbd/docker-run.sh index 386a830..eb2f02a 100644 --- a/lsio/sabnzbd/docker-run.sh +++ b/lsio/sabnzbd/docker-run.sh @@ -12,7 +12,7 @@ docker run -d \ -p 8080:8080 `# HTTP port for the WebUI.` \ -p 9090:9090 `# HTTPS port for the WebUI.` \ -v ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config `# Local path for sabnzbd config files.` \ - -v ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads `# Local path for finished downloads.` \ + -v ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads `# optional` `# Local path for finished downloads.` \ -v ${BASEDIR:-/volume1/docker}/sabnzbd/incomplete-downloads:/incomplete-downloads `# optional` `# Local path for incomplete-downloads.` \ --restart unless-stopped \ ghcr.io/linuxserver/sabnzbd diff --git a/lsio/sabnzbd/run-once.sh b/lsio/sabnzbd/run-once.sh index d26cada..db3198e 100644 --- a/lsio/sabnzbd/run-once.sh +++ b/lsio/sabnzbd/run-once.sh @@ -1,5 +1,5 @@ ln -s ../docker-env.cfg ./.env . ./.env mkdir -p ${BASEDIR:-/volume1/docker}/sabnzbd/config -mkdir -p ${BASEDIR:-/volume1/docker}/sabnzbd/downloads +mkdir -p ${BASEDIR:-/volume1/docker}/sabnzbd/downloads `#optional` mkdir -p ${BASEDIR:-/volume1/docker}/sabnzbd/incomplete-downloads `#optional`