👤 Author: Nick Yeoman.
These cookbooks are created with the intent of using Docker's extend feature. This way, you can run multiple containers in different domains but still have only one file to update.
These compose files make a few assumptions:
- You are only running on one host.
- You are using Nginx Proxy Manager (although most have redundant port access).
- Volumes are stored in the project folder under "data", git ignored and backed up externally.
The intended workflow is as follows:
- Clone the cookbook repository locally
git clone [email protected]:nickyeoman/docker-compose-cookbooks.git /git-repos/docker-compose-cookbooks
- Change to the directory
cd /git-repos/docker-compose-cookbooks
- Run the helper cli wizard:
bash helper.bash
- Commit the new project to git.
You will likely want to override a number of things in the project folder, such as networks.
Here is an example of how your project's docker-compose file might look:
version: '3.4'
networks:
proxy:
external: true
services:
proxy:
extends:
file: ${COOKBOOK}/nginx-proxy-manager/docker-compose.yml
service: proxy
env_file:
- .env
networks:
- proxy
with the .env file:
COOKBOOK=/git-repos/docker-compose-cookbooks