Network Unreachable During Installation

I’ve installed Anthias on a Raspberry Pi 3B+.

  • I used Raspberry Pi Imager to install Raspbian Lite (64-bit)
  • I performed sudo apt update
  • I pasted the script for the installation of Anthias.
  • At first, install is fine until it closes with the following:
[+] Pulling 7/7
 ! redis Warning                Get "https://registry-1.docker.io/v2/screenly/anthias-redis/manifests/sha256:108981083a9e86023d47fa37313cb76c2a7942ccc04f73b360d2a50c14c0b37e": dial tcp [2600:1f18:2148:bc02:22:27bd:19...                1.0s 
 ! anthias-nginx Warning        Get "https://registry-1.docker.io/v2/screenly/anthias-nginx/manifests/sha256:fc31745594da35547f9d6323249d8bfb036f35b9f4b5ef8f4a336a056c539c7b": dial tcp [2600:1f18:2148:bc02:22...                        1.0s 
 ! anthias-server Warning       Get "https://registry-1.docker.io/v2/screenly/anthias-server/manifests/sha256:c86ecb28272f6908c0d21e108981c7cceddc82985baf1e65f3e9b2401ce084cf": dial tcp [2600:1f18:2148:bc02:...                         1.0s 
 ! anthias-wifi-connect Warning Get "https://registry-1.docker.io/v2/screenly/anthias-wifi-connect/manifests/sha256:7fb878eb59540d7dac66f8765048c9463a25d2d0bf75e15f3d29556a35fe126c": dial tcp [2600:1f1...                               1.0s 
 ! anthias-websocket Warning    Get "https://registry-1.docker.io/v2/screenly/anthias-websocket/manifests/sha256:4e6f76f49b3a3f3222c1a61634cc549bbfb757815b724556366ccd49d9596903": dial tcp [2600:1f18:2148...                            1.0s 
 ! anthias-viewer Warning       Get "https://registry-1.docker.io/v2/screenly/anthias-viewer/manifests/sha256:b18d8497c8a7cc3c5bb7043059e108657452621ea6520732413439a1007b8d56": dial tcp [2600:1f18:2148:bc02:...                         1.0s 
 ! anthias-celery Warning       Get "https://registry-1.docker.io/v2/screenly/anthias-celery/manifests/sha256:1a7fce209c2b6b3f12fdcb465b0a5214dc0089e14ef1468a8ae41cda3783a342": dial tcp [2600:1f18:2148:bc02:...                         1.0s 
WARNING: Some service image(s) must be built from source by running:
    docker compose build anthias-server anthias-websocket anthias-celery anthias-nginx anthias-wifi-connect redis anthias-viewer
7 errors occurred:
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-redis/manifests/sha256:108981083a9e86023d47fa37313cb76c2a7942ccc04f73b360d2a50c14c0b37e": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-nginx/manifests/sha256:fc31745594da35547f9d6323249d8bfb036f35b9f4b5ef8f4a336a056c539c7b": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-wifi-connect/manifests/sha256:7fb878eb59540d7dac66f8765048c9463a25d2d0bf75e15f3d29556a35fe126c": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-server/manifests/sha256:c86ecb28272f6908c0d21e108981c7cceddc82985baf1e65f3e9b2401ce084cf": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-viewer/manifests/sha256:b18d8497c8a7cc3c5bb7043059e108657452621ea6520732413439a1007b8d56": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-websocket/manifests/sha256:4e6f76f49b3a3f3222c1a61634cc549bbfb757815b724556366ccd49d9596903": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable
	* Error response from daemon: Get "https://registry-1.docker.io/v2/screenly/anthias-celery/manifests/sha256:1a7fce209c2b6b3f12fdcb465b0a5214dc0089e14ef1468a8ae41cda3783a342": dial tcp [2600:1f18:2148:bc02:22:27bd:19a8:870c]:443: connect: network is unreachable

It says the network is unreachable, but I can ping anything external. I’ve also tried changing my /etc/resolv.conf to 8.8.8.8 and 8.8.4.4 to make sure it’s not my network’s DNS.

How should I proceed?

1 Like

Okay, for anyone in the future who comes here, it seems that my changes to /etc/resolv.conf did not persist for whatever reason. I changed it to read:

nameserver 8.8.8.8
nameserver 1.1.1.1

And then did a more /etc/resolv.conf to make sure changes stuck. It is working now.

1 Like