22 lines
748 B
Markdown
22 lines
748 B
Markdown
# docker-compose
|
|
|
|
Collection of docker-compose files for services I run
|
|
|
|
## How to start services
|
|
```bash
|
|
docker compose -f compose/<service name>/docker-compose.yml up -d
|
|
```
|
|
|
|
## Todo
|
|
- [ ] Put all config files in `compose/`
|
|
- [ ] Use .env files for configs
|
|
- [ ] Use .env files for secrets
|
|
- [ ] Use .env files for volume binds
|
|
- [ ] Provide example .env files
|
|
- [x] Gitignore actual .env
|
|
- [x] Gitignore folders and files in `volumes/`
|
|
- [ ] Add README to every service describing required env variables, commands and volumes
|
|
- [x] OPTIONAL: add a script that creates required dirs in `volumes/`
|
|
- [ ] OPTIONAL: add a script to backup all .env files
|
|
- [ ] OPTIONAL: add a script to backup everything
|
|
- [ ] OPTIONAL: Encrypt the backups with GPG |