The barebones files needed to run docker with CakePHP.
- Have Docker Desktop installed.
- Open Docker Dekstop.
- Copy and paste the Dockerfile and compose.yml file into the root of your CakePHP file.
- Fill in the missing fields that have comments next to them in compose.yml.
- Run the command: 
 docker-compose up -d
- In the case of any changes to compose.yml, run:
 docker-compose up -d --build
- Open Docker Desktop.
- Start up the Docker container of your desired application.
- Go to the CakePHP applicaiton (Port:8080) or phpmyadmin (Port:8081) through:
 http://localhost:port
 NOTE: Ports 8080 and 8081 here are used as demonstration, and have been used in compose.yml. This can be changed though to any other port.