New addition: Memos

This commit is contained in:
2023-09-14 20:35:03 +02:00
parent 2320fe4925
commit bd27a2f61c
2 changed files with 19 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=memos
#MEMOS_CONTAINER_NAME=Memos
#MEMOS_TAG=latest
#MEMOS_PORT=5230
+12
View File
@@ -0,0 +1,12 @@
services:
# Memos
memos:
container_name: ${MEMOS_CONTAINER_NAME:-Memos}
image: neosmemo/memos:${MEMOS_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5230/
ports:
- ${MEMOS_PORT:-5230}:5230
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-memos}/${MEMOS_CONTAINER_NAME:-Memos}/var/opt/memos:/var/opt/memos