borgmatic/docs/docker-compose.yaml
Dan Helfman 5b991b88dd
All checks were successful
continuous-integration/drone/push Build is passing
Rewrite documentation navigation URLs when being run locally.
2023-07-11 19:58:49 -07:00

23 lines
422 B
YAML

version: '3'
services:
docs:
image: borgmatic-docs
container_name: docs
ports:
- 8080:80
build:
dockerfile: docs/Dockerfile
context: ..
args:
ENVIRONMENT: development
message:
image: alpine
container_name: message
command:
- sh
- -c
- |
echo; echo "You can view dev docs at http://localhost:8080"; echo
depends_on:
- docs