Build the image and run the container in Devolopment mode
Build the image and run the container in Production mode
docker-compose -f docker-compose.production.yml up --build --force-recreate
When new env's added to the .env file, restart the container
When new packages are installed or updated, rebuild the image
docker-compose up --build
When rebuilding the image or restarting the container, always shutdown the container first
Want to run the container in the background? (no logs)
Add the -d flag to the docker-compose command (see examples below)
See logs of the container
docker logs -f CONTAINER_ID OR CONTAINER_NAME
docker exec -it CONTAINER_ID OR CONTAINER_NAME mysql -u root -p
Don't forget to change the .env file, remove the .example extension
Change passwords, usernames, db names, etc. in the docker-compose.yml file
The folder db is used to store the database data, so it won't be lost when the container is stopped
There is a dump.sql file to get up and running quickly
More info will be added later.