Ich habe meine kleine Python (Flask) App erstellt.Container ist heredocker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES4146fd976547 identidock_identidock:latest "/cmd.sh" 5 minutes ago Up 5 minutes 9090/tcp, 9191/tcp agitated_leakey
Wenn ich es versuche
curl localhost:5000curl: (7) Failed to connect to localhost port 5000: Connection refused
Ich habe nachgeprüftsudo netstat -an / grep -E "5000" unix 3 [ ] STREAM VERBUNDEN 25000
Es ist nicht listeting auf 5000.yaml-Linie mit Ports
ports: - "5000:5000"
Wenn ich meinen Container öffne
docker exec -it agitated_leakey /bin/bashuwsgi@4146fd976547:/app$ netstat -lnbash: netstat: command not found
Meine Docker-Datei
RUN pip install Flask==0.10.1 uWSGI==2.0.8WORKDIR /appCOPY app /appCOPY cmd.sh /EXPOSE 9090 9191
Warum passiert das?