Alright, so the Aloft01 container is running, but we need more info on its networking since the instance isn’t reachable at 127.0.0.1:8081.
Next step: Find Aloft01’s actual IP within Docker. Run this command:
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' AMP_Aloft01
That’ll spit out the internal container IP. Once you have it, try accessing the instance using http://<Container-IP>:8081. Let me know what happens!