diff --git a/services/bitwarden_rs.md b/services/bitwarden_rs.md index f8cef72..e007165 100644 --- a/services/bitwarden_rs.md +++ b/services/bitwarden_rs.md @@ -15,57 +15,7 @@ Setup a generic script that'll auto update bitwarden, build a container and laun mkdir -p /var/bitwarden -cat > /scratch/docker/bitwarden.sh < \ -# -e SMTP_FROM= \ -# -e SMTP_PORT=587 \ -# -e SMTP_SSL=true \ -# -e SMTP_USERNAME= \ -# -e SMTP_PASSWORD= \ - -# openssl rand -base64 48 -# -e ADMIN_TOKEN=[above_output] - -ARCH=\`arch\` -if [ \$ARCH == "aarch64" ] -then - ARCH="arm64v8" -else - ARCH="arm32v7" -fi - -docker pull registry.lollipopcloud.solutions/\$ARCH/bitwarden_rs - -docker container stop bitwarden -docker container rm bitwarden - -docker run \\ - --name bitwarden \\ - --restart unless-stopped \\ - --net docker-private \\ - --ip 172.30.12.23 \\ - -e TZ=UTC \\ - -e DEBUG=1 \\ - -e WEBSOCKET_ENABLED=true \\ - -e SIGNUPS_ALLOWED=false \\ - -e DOMAIN=https://bitwarden.domain.tld \\ - -e ADMIN_TOKEN=[see above] \\ - -v /var/bitwarden/:/data/ \\ - registry.lollipopcloud.solutions/\$ARCH/bitwarden_rs:latest - -EOF - +wget -O bitwarden.sh https://git.lollipopcloud.solutions/lollipop-docker/misc/raw/branch/master/run_bitwarden.sh chmod a+x /scratch/docker/bitwarden.sh ``` diff --git a/services/nextcloud.md b/services/nextcloud.md index 60e1326..73eb31c 100644 --- a/services/nextcloud.md +++ b/services/nextcloud.md @@ -22,44 +22,7 @@ Setup a generic script that'll auto update NextCloud, build a container and laun mkdir -p /var/nextcloud/data /var/nextcloud/config chown -R www-data: /var/nextcloud -cat > /scratch/docker/nextcloud.sh <