Open
Description
I'm working on building a project to be hosted in Google App Engine with a custom runtime (ie., docker container) based on phppm/docker. However, GAE requires that custom runtimes listen on port 8080:
From the GAE documentation:
Listen to port 8080
The App Engine front end will route incoming requests to the appropriate module on port 8080. You must be sure that your application code is listening on 8080.
It would be nice if the ultimate end port the docker images listened on was configurable from the Dockerfile in our custom container. Perhaps something like this:
FROM phppm/nginx
ENV PPM_LISTEN_ON 8080
COPY web/ /var/www
and then have the PHPPM docker container we are extending automatically configure itself to listen on that port we've set.
Metadata
Metadata
Assignees
Labels
No labels