Compare commits

..

No commits in common. "d0133a73df30d818a06c1c355eaacbe38f31ac52" and "91d729564fe2efd05c1ffbecfebbac8476bd7d83" have entirely different histories.

8 changed files with 17 additions and 18 deletions

View File

@ -1,8 +0,0 @@
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,8 +6,6 @@ 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 \
@ -16,13 +14,12 @@ 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 \
customcaddy:latest docker.io/caddy:2.6.2
} }
down () { down () {

View File

@ -6,6 +6,8 @@ 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,6 +3,8 @@
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,6 +3,8 @@
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 \
@ -22,7 +24,7 @@ up () {
--volume /etc/timezone:/etc/timezone:ro \ --volume /etc/timezone:/etc/timezone:ro \
--publish 2222:2222 \ --publish 2222:2222 \
--network pew-net \ --network pew-net \
docker.io/gitea/gitea:1.20 docker.io/gitea/gitea:latest
} }
down () { down () {

View File

@ -3,6 +3,8 @@
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,6 +13,8 @@ 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 \
@ -29,7 +31,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 \
ghcr.io/mastodon/mastodon:v4.1.5 bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000" docker.io/tootsuite/mastodon:v4.0.2 bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
docker run \ docker run \
--detach \ --detach \
@ -46,7 +48,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 \
ghcr.io/mastodon/mastodon:v4.1.5 node ./streaming docker.io/tootsuite/mastodon:v4.0.2 node ./streaming
docker run \ docker run \
--detach \ --detach \
@ -64,7 +66,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 \
ghcr.io/mastodon/mastodon:v4.1.5 bundle exec sidekiq docker.io/tootsuite/mastodon:v4.0.2 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,6 +3,8 @@
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 \
@ -16,8 +18,6 @@ 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
} }