borgmatic/docs/docker-compose.yaml
Dan Helfman 53d9ffd1d3
Some checks failed
build / test (push) Successful in 5m4s
build / docs (push) Failing after 1m16s
Attempt to make a borgmatic docs tarball package in CI.
2024-10-27 13:26:41 -07:00

22 lines
434 B
YAML

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