enable ipv6 internally

master
Paul Walko 2022-12-23 19:30:06 -05:00
parent 2cb85ebaf7
commit 1a5851fba6
7 changed files with 21 additions and 7 deletions

View File

@ -3,7 +3,9 @@
set -e
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# main caddy container
docker run \

View File

@ -6,7 +6,9 @@ set -e
# https://docs.firefly-iii.org/firefly-iii/advanced-installation/cron/
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# Exposed on port 8080 in pew-net
# env options: https://raw.githubusercontent.com/firefly-iii/firefly-iii/main/.env.example

View File

@ -3,7 +3,9 @@
set -e
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# Exposed on port 8080 in pew-net
docker run \

View File

@ -3,7 +3,9 @@
set -e
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# Exposed on port 3000 in pew-net
docker run \

View File

@ -3,7 +3,9 @@
set -e
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# Exposed on port 8080 in pew-net
docker run \

View File

@ -12,7 +12,9 @@ DB_PASS=mastodon
DB_PORT=5432
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
docker run \
--detach \

View File

@ -3,7 +3,9 @@
set -e
up () {
docker network create pew-net || true
# Ensure iptables rules exist
# https://askubuntu.com/questions/1052919/iptables-reload-restart-on-ubuntu/1072948#1072948
docker network create --ipv6 --subnet "fd01::/80" pew-net || true
# Exposed on port 32400 in pew-net
docker run \