From cc86bc26d5314f02d895f316f3952473ae00e550 Mon Sep 17 00:00:00 2001 From: Michel Date: Sun, 10 Sep 2023 01:10:06 +0200 Subject: [PATCH] New addition: Matchering --- matchering/.env.sample | 7 +++++++ matchering/compose.yml | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 matchering/.env.sample create mode 100644 matchering/compose.yml diff --git a/matchering/.env.sample b/matchering/.env.sample new file mode 100644 index 0000000..54f8a92 --- /dev/null +++ b/matchering/.env.sample @@ -0,0 +1,7 @@ +# Uncomment and change the following variables if you want to use them. +#RESTART=unless-stopped +#SYNOLOGY_VOLUME=volume1 +#STACK_NAME=matchering +#MATCHERING_CONTAINER_NAME=Matchering +#MATCHERING_TAG=latest +#MATCHERING_PORT=8360 diff --git a/matchering/compose.yml b/matchering/compose.yml new file mode 100644 index 0000000..5dffec5 --- /dev/null +++ b/matchering/compose.yml @@ -0,0 +1,10 @@ +services: + # Matchering + matchering: + container_name: ${MATCHERING_CONTAINER_NAME:-Matchering} + image: sergree/matchering-web:${MATCHERING_TAG:-latest} + restart: ${RESTART:-unless-stopped} + ports: + - ${MATCHERING_PORT:-8360}:8360 + volumes: + - /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-matchering}/${MATCHERING_CONTAINER_NAME:-Matchering}/app/data:/app/data