Skip to content

Latest commit

 

History

History

stickynotes-jb

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

stickynotes-jb

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

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

Runtime topology for this group of containers:

container runtime

TL;DR

To run this app

  1. 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
  2. install docker-compose https://docs.docker.com/compose/install/

  3. clone this repo

  4. make sure this is your current working directory, run docker-compose build

  5. 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
  6. load a browser to access the app localhost:8700 or ip.address.of.host:8700

  7. load a browser to access phpmyadmin for the app db localhost:8701 or ip.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.

docker registry image repo

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

running this app

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

the app on korra Centos 7.x

running on korra (Centos 7.?)

the phpmyadmin on my local box

running on ubuntu 18.04

running on cloud

todo insert info for running on cloud

Creating a container image (docker compose & Dockerfiles)

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

docker commands

see common docker commands

docker-compose commands

see common docker commands