Add migration to add firewall opening for docker DNS and fix comment
This commit is contained in:
parent
e7ea45a802
commit
6366dc1118
@ -15,7 +15,7 @@ if ! command -v ufw &>/dev/null && -z "${OMARCHY_CHROOT_INSTALL:-}"; then
|
|||||||
sudo ufw allow 22/tcp
|
sudo ufw allow 22/tcp
|
||||||
|
|
||||||
# Allow Docker containers to use DNS on host
|
# Allow Docker containers to use DNS on host
|
||||||
sudo ufw allow in proto udp from 172.16.0.0/12 to 172.17.0.1 port 53 comment allow-docker-dns
|
sudo ufw allow in proto udp from 172.16.0.0/12 to 172.17.0.1 port 53 comment 'allow-docker-dns'
|
||||||
|
|
||||||
# Turn on the firewall
|
# Turn on the firewall
|
||||||
sudo ufw --force enable
|
sudo ufw --force enable
|
||||||
|
3
migrations/1755878717.sh
Normal file
3
migrations/1755878717.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
echo "Ensure Docker DNS requests are not blocked by ufw firewall"
|
||||||
|
|
||||||
|
sudo ufw allow in proto udp from 172.16.0.0/12 to 172.17.0.1 port 53 comment 'allow-docker-dns'
|
Loading…
x
Reference in New Issue
Block a user