docs(docker-compose): In example dir layout focus on important files

This commit is contained in:
hygienic-books 2023-06-24 23:57:58 +02:00
parent 0436224728
commit 71a2fe1beb
3 changed files with 12 additions and 12 deletions

View File

@ -99,14 +99,14 @@ build-context/
│ ├── docker-data
│ | └── config
│ │ └── grafana.cfg
│ ├── Dockerfile
│ └── extras
│ ├── ...
│ └── ...
└── nginx
├── docker-data
| └── config
│ └── nginx.cfg
├── Dockerfile
└── extras
├── ...
└── ...
```
When done head back up to [How to run](#how-to-run).

View File

@ -101,8 +101,8 @@ build-context/
├── docker-data
│ └── config
│ └── vault.cfg
├── Dockerfile
└── extras
├── ...
└── ...
```
When done head back up to [How to run](#how-to-run).

View File

@ -145,23 +145,23 @@ build-context/
│ ├── docker-data
│ | └── config
│ │ └── {{ component }}.cfg
│ ├── Dockerfile
│ └── extras
│ ├── ...
│ └── ...
{%- else %}
└── {{ component }}
├── docker-data
| └── config
│ └── {{ component }}.cfg
├── Dockerfile
└── extras
├── ...
└── ...
{%- endif %}
{%- endfor %}
{%- else %}
├── docker-data
│ └── config
│ └── {{ cookiecutter.__service_slug }}.cfg
├── Dockerfile
└── extras
├── ...
└── ...
{%- endif %}
```