You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
22 lines
453 B
services:
|
|
hello-algo-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-dev
|
|
image: hello-algo-dev
|
|
container_name: hello-algo-dev
|
|
ports:
|
|
- "${HTTP_PORT:-8000}:8000"
|
|
# tty: true
|
|
# stdin_open: true
|
|
entrypoint:
|
|
# - "/bin/sh"
|
|
- mkdocs
|
|
- serve
|
|
- -a
|
|
- 0.0.0.0:8000
|
|
volumes:
|
|
- ./:/hello-algo
|
|
- ./docs:/hello-algo/build/docs
|
|
- ./overrides:/hello-algo/build/overrides
|