This is a proof of concept containerized PHP app. The code was written by J Boisvert & ? as an assignment given by J. Nilakantan @ Dawson College for the Computer Science PHP course in the 3rd year PHP course Fall 2019.
My thanks to everyone for lending me their work.
It uses three containers
- php apache + php + app (has a Dockerfile)
- db mysql (standard image, config through yaml file)
- phpmyadmin (standard image, config through yaml file)
This is the first app using multiple containers & docker compose
- https://hub.docker.com/_/mysql/
- https://hub.docker.com/r/phpmyadmin/phpmyadmin
- https://docs.docker.com/compose/compose-file/
- https://docs.docker.com/compose/gettingstarted/
Note: This is a multi container setup for development, there are several volumes mapped to the localhost to aide testing & dev. Some would be changed for a production deployment, see below for overview of mapping & port forwarding, yaml file for specifics
Note: The information in this repo is expanded upon for this google slide presentation
-
install docker https://docs.docker.com/install/
- on *nix you will need to add your user to the docker group to run as a regular user
sudo usermod -aG docker youruserid
- on *nix you will need to add your user to the docker group to run as a regular user
-
install docker-compose https://docs.docker.com/compose/install/
-
clone this repo
-
make sure this is your current working directory, run
docker-compose build
-
run
docker-compose up -d
- -d detaches the container, if you omit you will see the startup and the logs from all containers
- note you do not need the -p unless you want to override the port forwarding in the docker-compose.yaml
- when you use docker, the run command does the port forwarding
- with multi container apps you need to use docker-compose the config for everyting is in the yaml file see docker compose yaml for info, change docker-compose.yaml if you want to use a different port
-
load a browser to access the app
localhost:8700
orip.address.of.host:8700
-
load a browser to access phpmyadmin for the app db
localhost:8701
orip.address.of.host:8701
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.
The app image is available as a public image in my repo, but it cannot be run standalone see running this app
https://hub.docker.com/repository/docker/tricia/stickynotes-jb_php
This image cannot be run standalone, it needs a database container. You must clone this repo and use docker-compose up -d
access via a browser http://localhost:8700, access phpmyadmin via http://localhost:8701 All configuration is in the yaml file docker-compose.yaml for the syntax / explanations see docker-compose.yaml with explanations
todo insert info for running on cloud
Multi container apps use docker compose yaml and Dockerfiles
See here for the docker compose yaml that pulls it all together, with explanations that was used to create this app.
See here for the php & apache Dockerfile with explanations that was used to create one of the containers for this app.
See here for the runtime use of these commands & troubleshooting db errors & the makefile using the commands