My compose files for running docker stacks
To run one these stack you need to have Docker install on the host system.
On desktop, the Docker Desktop app can be use. (app with GUI) Use the Official Doc to install it.
For GUI-less use or on server, install Docker Engine using the Official Doc
To use one of these compose file :
-
Download the file.
-
Move it in the desired folder on the host system.
-
To start the stack, either :
- run
docker compose -f <name-of-the-compose-file.yml> up -d
or
- rename the file to
docker-compose.yml
and rundocker compose up -d
(in the folder containing the file)
- run