I have a postgres docker instance running on my Raspberry PI.
In addition I want to access the database with adminer. I tried to run it inside a docker container on multiple ways (see below). But every try leads to the sample problem:
When I enter the address to adminer raspberrypiIP:5431
I am stuck in a infinite loading process, whether I try it from the Pi itself or from my normal machine.
The adminer logs indicate a connction was established:
Server (http://[::]:8080 started
[::connectedDeviceIP]:port Accepted
Can anybody help me with that? I couldn't find a valid solution. Below are my docker tries: They match with the most other in the docs or other troubleshooting threads. I am out of ideas.
I tried to run adminer with a docker compose:
version: "2"
services:
adminer:
image: adminer
ports:
- 5431:8080
container_name: adminer
As docker run:
docker run -p 5431:8080 adminer
And as a container created with portainer.
All lead to the described problem. (If I start the docker-compose with my normal Ubuntu machine adminer is reachable. So the problem might be related to the Raspberr PI, but shouldn't that be fine with the docker abstraction?)