autodoc/docker-compose.yml

17 lines
320 B
YAML
Raw Permalink Normal View History

2019-09-20 07:16:38 +00:00
version: "2"
services:
autodoc:
restart: "no"
image: ldericher/autodoc
build:
2020-02-18 05:05:14 +00:00
context: ./src
2019-09-20 07:16:38 +00:00
2019-09-20 10:30:21 +00:00
command: "bash"
2019-09-20 07:16:38 +00:00
volumes:
2020-02-18 05:05:14 +00:00
- "${PWD}/src/usr/local/bin/autodoc:/usr/local/bin/autodoc:ro"
- "${PWD}/src/usr/local/lib/autodoc:/usr/local/lib/autodoc:ro"
2019-09-24 09:53:51 +00:00
- "${PWD}/examples:/docs"