enable ipv6 internally
parent
2cb85ebaf7
commit
1a5851fba6
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue