From 4fc0fd19ccde0ed369812424d3e2a3ec1c0d5b1d Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Sun, 12 May 2024 10:43:29 +0700 Subject: [PATCH] doc: added docker-compose example --- docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..b5dcc5f --- /dev/null +++ b/docker-compose.yaml @@ -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: