Similar idea https://github.com/docker/awesome-compose
Install docker and docker-compose. On debian-based system you can use:
sudo apt install docker.io docker-compose
# Clone repo
git clone https://gitlab.com/broobe/docker-compose-samples.git
# Go to the tool we want to install. Example:
cd docker-compose-samples/vaultwarden
# Read readme.md
cat readme.md
# Edit .env
vim .env
# Download images
docker-compose pull
# Start containers
docker-compose up -d
- Better documentation.
- Move all application vars to a .env file.
- More docker compose-recipes.
- More installation variants from the existing recipes.
Considerations:
- Do not place passwords or sensitive data on docker-compose.yml.
- Use .env files for make more customizable the installation.
- Each recipe should contain their own readme.md.
- Avoid using configurations with non-persistent data.
This theme is maintained by the following person(s) and a bunch of awesome contributors.
Leandro Padula |
This project is licensed under the MIT License - see the LICENSE file for details.