Dump these files in the root of your theme.
Create .env file from .env.example and fill in appropriately, these will be the details you enter when running through the Wordpress setup. If you have already setup the site you will need to update wp-config.php yourself. You must also make sure that the .env file you just created is added to the projects .gitignore.
N.B. The host for your database is db not localhost.
There is a Makefile included with various commands for ease of use, bellow are the vital commands but check the file for more uses.
make up
make down
N.B. This must be done when switching between sites.
make pull
N.B. This only needs to be done when an image is updated.
make install
You should add any other installation scripts to this command, for example npm install. Currently this will just install any PHP dependencies.
make composer CMD="require vendor/package"
N.B. You must pass a CMD when using make composer
make bash
Sometimes you just need to have a poke around in the container!