Switch to Docker Compose for dev-docs script, so podman-docker is no longer needed for Podman users.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-22 10:07:40 -07:00
parent 5962fd473e
commit 22b84a2fea
3 changed files with 31 additions and 8 deletions

22
docs/docker-compose.yaml Normal file
View File

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