misc updates

master
Paul Walko 2023-07-24 09:05:10 -04:00
parent 91d729564f
commit 0aa43ea963
8 changed files with 17 additions and 16 deletions

View File

@ -0,0 +1,8 @@
FROM caddy:2.6.2-builder AS builder
RUN xcaddy build \
--with github.com/caddyserver/replace-response
FROM caddy:2.6.2
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

View File

@ -6,6 +6,8 @@ up () {
docker network create pew-net || true docker network create pew-net || true
# main caddy container # main caddy container
docker build -t customcaddy:latest -f Dockerfile.caddy .
docker run \ docker run \
--detach \ --detach \
--name caddy \ --name caddy \
@ -14,12 +16,13 @@ up () {
--volume /bigdata/k8s-config/caddy/Caddyfile:/etc/caddy/Caddyfile:ro \ --volume /bigdata/k8s-config/caddy/Caddyfile:/etc/caddy/Caddyfile:ro \
--volume /bigdata/k8s-config/caddy/data:/data:rw \ --volume /bigdata/k8s-config/caddy/data:/data:rw \
--volume /bigdata/gis/bigcavemaps.com:/www/bigcavemaps.com:ro \ --volume /bigdata/gis/bigcavemaps.com:/www/bigcavemaps.com:ro \
--volume /bigdata/gis/source:/gis/source:ro \
--volume /bigdata/files:/www/seaturtle.pw_files:ro \ --volume /bigdata/files:/www/seaturtle.pw_files:ro \
--publish 80:80 \ --publish 80:80 \
--publish 443:443 \ --publish 443:443 \
--publish 443:443/udp \ --publish 443:443/udp \
--network pew-net \ --network pew-net \
docker.io/caddy:2.6.2 customcaddy:latest
} }
down () { down () {

View File

@ -6,8 +6,6 @@ set -e
# https://docs.firefly-iii.org/firefly-iii/advanced-installation/cron/ # https://docs.firefly-iii.org/firefly-iii/advanced-installation/cron/
up () { up () {
docker network create pew-net || true
# Exposed on port 8080 in pew-net # Exposed on port 8080 in pew-net
# env options: https://raw.githubusercontent.com/firefly-iii/firefly-iii/main/.env.example # env options: https://raw.githubusercontent.com/firefly-iii/firefly-iii/main/.env.example
# Create firefly.env with APP_KEY # Create firefly.env with APP_KEY

View File

@ -3,8 +3,6 @@
set -e set -e
up () { up () {
docker network create pew-net || true
# Exposed on port 8080 in pew-net # Exposed on port 8080 in pew-net
docker run \ docker run \
--detach \ --detach \

View File

@ -3,8 +3,6 @@
set -e set -e
up () { up () {
docker network create pew-net || true
# Exposed on port 3000 in pew-net # Exposed on port 3000 in pew-net
docker run \ docker run \
--detach \ --detach \

View File

@ -3,8 +3,6 @@
set -e set -e
up () { up () {
docker network create pew-net || true
# Exposed on port 8080 in pew-net # Exposed on port 8080 in pew-net
docker run \ docker run \
--detach \ --detach \

View File

@ -13,8 +13,6 @@ DB_PASS=mastodon
DB_PORT=5432 DB_PORT=5432
up () { up () {
docker network create pew-net || true
docker run \ docker run \
--detach \ --detach \
--name mastodon-web \ --name mastodon-web \
@ -31,7 +29,7 @@ up () {
--env DB_PORT=$DB_PORT \ --env DB_PORT=$DB_PORT \
--volume /bigdata/k8s-config/mastodon/public/system:/mastodon/public/system:rw \ --volume /bigdata/k8s-config/mastodon/public/system:/mastodon/public/system:rw \
--network pew-net \ --network pew-net \
docker.io/tootsuite/mastodon:v4.0.2 bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000" ghcr.io/mastodon/mastodon:v4.1.5 bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
docker run \ docker run \
--detach \ --detach \
@ -48,7 +46,7 @@ up () {
--env DB_PASS=$DB_PASS \ --env DB_PASS=$DB_PASS \
--env DB_PORT=$DB_PORT \ --env DB_PORT=$DB_PORT \
--network pew-net \ --network pew-net \
docker.io/tootsuite/mastodon:v4.0.2 node ./streaming ghcr.io/mastodon/mastodon:v4.1.5 node ./streaming
docker run \ docker run \
--detach \ --detach \
@ -66,7 +64,7 @@ up () {
--env DB_PORT=$DB_PORT \ --env DB_PORT=$DB_PORT \
--volume /bigdata/k8s-config/mastodon/public/system:/mastodon/public/system:rw \ --volume /bigdata/k8s-config/mastodon/public/system:/mastodon/public/system:rw \
--network pew-net \ --network pew-net \
docker.io/tootsuite/mastodon:v4.0.2 bundle exec sidekiq ghcr.io/mastodon/mastodon:v4.1.5 bundle exec sidekiq
# may have to run db:migrate if things don't work right away # may have to run db:migrate if things don't work right away
docker run \ docker run \

View File

@ -3,8 +3,6 @@
set -e set -e
up () { up () {
docker network create pew-net || true
# Exposed on port 32400 in pew-net # Exposed on port 32400 in pew-net
docker run \ docker run \
--detach \ --detach \
@ -18,6 +16,8 @@ up () {
--volume /bigdata/media/audiobooks:/media/audiobooks:ro \ --volume /bigdata/media/audiobooks:/media/audiobooks:ro \
--volume /bigdata/media/music:/media/music:ro \ --volume /bigdata/media/music:/media/music:ro \
--volume /media-vtluug:/media/media-vtluug:ro \ --volume /media-vtluug:/media/media-vtluug:ro \
--volume /bigdata/tmp/plex/transcode:/transcode:rw \
--device=/dev/dri:/dev/dri:rw \
--network pew-net \ --network pew-net \
ghcr.io/linuxserver/plex:latest ghcr.io/linuxserver/plex:latest
} }