All command examples are described for UNIX-like systems (Linux, Mac OS).
- Make sure that you have Docker and Docker Compose installed
- Windows or macOS: Install Docker Desktop
- Linux: Install Docker and then Docker Compose
- Download some or all of the samples from this repository.
Before starting, you must create a .env file based on the .env-template:
cp -b .env-template > .envDefault LEMP app stack can be run in a local environment by going into the root directory and executing:
docker-compose up -dGoing into the app container:
docker exec -it {app_container_name} bashTo stop and remove all containers of app run:
docker-compose down