This is a proof of concept containerized app to host a React javascript app that uses an api it is to be deployed to heroku It uses an httpd image
Before you try this you must install docker
Note If you are newly learning docker I strongly suggest you use the command line interface as it may be used anywhere: windoze, *nix, and cloud shells. No need to learn new interfaces every time.
- create a Dockerfile that uses an appropriate base image & installs the software you need. See here for the Dockerfile that was used to create this app.
- Dockerfile reference https://docs.docker.com/engine/reference/builder/
- build the image, run
docker build -t **<containerimagename>** -f Dockerfile.local
(tweak Dockerfile until it works!) - run the container, run
docker run -d -p 8888:80 <containerimagename>
-d
detach the container app from the console, run the app in the background-p 8888:80
forward port 80 on the container to port 8888 on the current host- using port 8888 as an example, choose a high port (if you want non localhost access open the port on your firewall)
- access the app http://localhost:8888/ (if you have opened the port you can use ip/hostname instead of localhost
# Base image
FROM httpd
# Adding key value pairs to label the image
LABEL maintainer="P Campbell" email="[email protected]" modified="2020-05-05"
# set current directory, this is the DocumentRoot for lighthttpd, where the content goes
WORKDIR /var/www/localhost/htdocs/
# copy my app files (in app/) from the host to the container
COPY app/* ./
- sign up for an account if you do not have one on docker hub
- sign in on docker hub
and create a repository it will have the format
<your username>/<choose an image name>
for example sybil/bestapp - if you are on *nix use
docker login
with your credentials from the website, it will set up a file~/.docker/config.json
- build your container app with the tag for your repository
docker build -t <your username>/<image name>
for exampledocker build -t sybil/bestapp
- push the image to docker hub
docker push <your username>/<image name>
for exampledocker push sybil/bestapp
- test it on another computer
docker run -d -p 8888:80 <your username>/<image name>
for example idocker run -d -p 8888:80 sybil/bestapp
It is available as a public image in my docker hub account
docker run -d -p <hostport>:80 tricia/weatherapp
- there is a script run.sh that you can use or
docker run -d -p <hostport>:80 tricia/weatherapp
- 80 is the container port and hostport is the host that is running docker, port forwarding from container 80 to host hostport is done by docker, choose a high port
-d
detaches the container, if you omit you will see whatever the container logs
- load a browser to access the app
http://localhost:<hostport>
- if you want to access the app from another host, you must open your firewall for port hostport then you can access it via or
http://ip.address.of.host:<hostport>
orhttp://domain.name.of.host:<hostport>
- sign up for an account on heroku if you have not already done so
- install the heroku cli
- login with your heroku credentials
heroku login -i
- Due to the way heroku sets up apps you must use the PORT env var in the Listen directive
Listen ${PORT}
this can be done by copying my-httpd.conf onto your image, so the last line of the Dockerfile must beCOPY my-httpd.conf /usr/local/apache2/conf/httpd.conf
- show the app
heroku apps
andheroku apps:info -a <your app name>
- enable the app
heroku labs:enable --app <your app name> runtime-new-layer-extract
- you may need to authenticate to the heroku registry
heroku container:login
- push to the heroku registry, it will use your dockerfile to build the app image again
heroku container:push web --app <your app name>
- release the app
heroku container:release web --app <your app name>
- test the app
https://<your app name>.herokuapp.com
Note even though you are running the app on an internal port defined by the heroku container engine it is port forwarded to 443 externally and uses the *.herokuapp.com cert so traffic is encrypted.