blob: f7aa212e58c196cc4525c7ecad24366a3bbb932c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
version: '3'
services:
docs:
image: pyblackbird_cc_local_docs
container_name: pyblackbird_cc_local_docs
build:
context: .
dockerfile: ./compose/local/docs/Dockerfile
env_file:
- ./.envs/.local/.django
volumes:
- ./docs:/docs:z
- ./config:/app/config:z
- ./pyblackbird_cc:/app/pyblackbird_cc:z
ports:
- '9000:9000'
command: /start-docs
|