rm pngx-cave

master
Paul Walko 2024-09-28 19:53:14 -04:00
parent 7df5cf425a
commit 0b3b784b99
4 changed files with 5 additions and 93 deletions

View File

@ -32,8 +32,6 @@ up () {
--volume /mammoth/caddy/logs:/logs:rw \
--publish 443:443 \
--publish 443:443/udp \
--publish [$(tailscale ip -6)]:8443:8443 \
--publish [$(tailscale ip -6)]:8443:8443/udp \
--network pew-net \
customcaddy:latest
}

View File

@ -18,7 +18,7 @@ up () {
--volume /mammoth/photos:/external_library/photos:ro \
--volume /etc/localtime:/etc/localtime:ro \
--network pew-net \
ghcr.io/immich-app/immich-server:v1.108.0
ghcr.io/immich-app/immich-server:v1.116.2
docker run \
--detach \
@ -32,7 +32,7 @@ up () {
--env REDIS_HOSTNAME=immich-redis \
--volume /mammoth/immich/cache:/cache:rw \
--network pew-net \
ghcr.io/immich-app/immich-machine-learning:v1.108.0
ghcr.io/immich-app/immich-machine-learning:v1.116.2
docker run \
--detach \

View File

@ -1,87 +0,0 @@
#!/bin/bash
set -e
up () {
docker run \
--detach \
--name pngx-cave-db \
--restart unless-stopped \
--env POSTGRES_DB=pngx-cave_db \
--env POSTGRES_USER=pngx-cave_user \
--env POSTGRES_PASSWORD=pngx-cave_pw \
--volume /mammoth/pngx-cave/postgres:/var/lib/postgresql/data:rw \
--network pew-net \
docker.io/library/postgres:16
docker run \
--detach \
--name pngx-cave-redis \
--restart unless-stopped \
--volume /mammoth/pngx-cave/redis:/data:rw \
--network pew-net \
docker.io/library/redis:7
echo 'Waiting 5 seconds for postgres to start up...'
sleep 5
# Exposed on port 8000 in pew-net
docker run \
--detach \
--name pngx-cave \
--restart unless-stopped \
--env PAPERLESS_DBHOST=pngx-cave-db \
--env PAPERLESS_DBNAME=pngx-cave_db \
--env PAPERLESS_DBPASS=pngx-cave_pw \
--env PAPERLESS_DBUSER=pngx-cave_user \
--env PAPERLESS_EMAIL_FROM=paul@bigcavemaps.com \
--env PAPERLESS_EMAIL_HOST=smtp.postmarkapp.com \
--env PAPERLESS_EMAIL_PORT=587 \
--env PAPERLESS_EMAIL_TLS=True \
--env PAPERLESS_OCR_LANGUAGE=eng \
--env PAPERLESS_OCR_USER_ARGS='{"continue_on_soft_render_error": true}' \
--env PAPERLESS_REDIS=redis://pngx-cave-redis:6379 \
--env PAPERLESS_TASK_WORKERS=10 \
--env PAPERLESS_TIKA_ENABLED=1 \
--env PAPERLESS_TIKA_GOTENBERG_ENDPOINT=http://pngx-cave-gotenberg:3000 \
--env PAPERLESS_TIKA_ENDPOINT=http://pngx-cave-tika:9998 \
--env PAPERLESS_TIME_ZONE=America/New_York \
--env PAPERLESS_URL=https://pngx.caving.dev \
--env USERMAP_UID=1000 \
--env USERMAP_GID=1000 \
--env-file $HOME/scripts-private/lech/pngx-cave.env \
--volume /mammoth/pngx-cave/pngx/data:/usr/src/paperless/data:rw \
--volume /mammoth/pngx-cave/pngx/media:/usr/src/paperless/media:rw \
--volume /mammoth/pngx-cave/pngx/export:/usr/src/paperless/export:rw \
--volume /mammoth/pngx-cave/pngx/consume:/usr/src/paperless/consume:rw \
--network pew-net \
ghcr.io/paperless-ngx/paperless-ngx:latest
docker run \
--detach \
--name pngx-cave-gotenberg \
--network pew-net \
docker.io/gotenberg/gotenberg:8.7 gotenberg --chromium-disable-javascript=true --chromium-allow-list=file:///tmp/.*
docker run \
--detach \
--name pngx-cave-tika \
--restart unless-stopped \
docker.io/apache/tika:latest
}
down () {
docker stop pngx-cave-db || true
docker rm pngx-cave-db || true
docker stop pngx-cave-redis || true
docker rm pngx-cave-redis || true
docker stop pngx-cave || true
docker rm pngx-cave || true
docker stop pngx-cave-gotenberg || true
docker rm pngx-cave-gotenberg || true
docker stop pngx-cave-tika || true
docker rm pngx-cave-tika || true
}
$@

View File

@ -44,7 +44,7 @@ up () {
--env PAPERLESS_TIKA_GOTENBERG_ENDPOINT=http://pngx-gotenberg:3000 \
--env PAPERLESS_TIKA_ENDPOINT=http://pngx-tika:9998 \
--env PAPERLESS_TIME_ZONE=America/New_York \
--env PAPERLESS_URL=https://pngx.bigcavemaps.com:8443 \
--env PAPERLESS_URL=https://pngx.bigcavemaps.com \
--env USERMAP_UID=1000 \
--env USERMAP_GID=1000 \
--env-file $HOME/scripts-private/lech/pngx.env \
@ -53,7 +53,7 @@ up () {
--volume /mammoth/pngx/pngx/export:/usr/src/paperless/export:rw \
--volume /mammoth/pngx/pngx/consume:/usr/src/paperless/consume:rw \
--network pew-net \
ghcr.io/paperless-ngx/paperless-ngx:latest
ghcr.io/paperless-ngx/paperless-ngx:2.12
docker run \
--detach \
@ -65,6 +65,7 @@ up () {
--detach \
--name pngx-tika \
--restart unless-stopped \
--network pew-net \
docker.io/apache/tika:latest
}