Docker compose commands
Docker compose commands
Go to the folder where the docker-compose.yaml file is located, where you can execute the docker compose commands.
cd soffid4compose
Check the version.
docker compose version
Create or upgrade the containers, you must do it every time you modify the docker-compose.yaml file.
docker compose up -d
Check containers.
docker compose ps
View the console logs.
docker compose logs -f console
Destroy the containers
docker compose down