mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 05:06:58 +03:00
a1d34a08af
* Split the docs from local.yml and build the service in CI * Change docs build in our CI docker tests
19 lines
476 B
YAML
19 lines
476 B
YAML
version: '3'
|
|
|
|
services:
|
|
docs:
|
|
image: {{ cookiecutter.project_slug }}_local_docs
|
|
container_name: {{ cookiecutter.project_slug }}_local_docs
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/docs/Dockerfile
|
|
env_file:
|
|
- ./.envs/.local/.django
|
|
volumes:
|
|
- ./docs:/docs:z
|
|
- ./config:/app/config:z
|
|
- ./{{ cookiecutter.project_slug }}:/app/{{ cookiecutter.project_slug }}:z
|
|
ports:
|
|
- '9000:9000'
|
|
command: /start-docs
|