doc: added docker-compose example
Some checks failed
/ push (push) Failing after 31s

This commit is contained in:
Tigor Hutasuhut 2024-05-12 10:43:29 +07:00
parent 409d63d15e
commit 4fc0fd19cc

17
docker-compose.yaml Normal file
View file

@ -0,0 +1,17 @@
# This is an example of docker-compose.yaml file for redmage.
services:
redmage:
image: git.tigor.web.id/tigor/redmage:latest
ports:
- "8080:8080"
volumes:
# Database will be stored in this volume.
- db:/app/db
# Image downloads will be stored in this volume.
- downloads:/app/downloads
volumes:
downloads:
db: