diff --git a/sheetable/.env.sample b/sheetable/.env.sample new file mode 100644 index 0000000..e62686b --- /dev/null +++ b/sheetable/.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=sheetable +#SHEETABLE_CONTAINER_NAME=SheetAble +#SHEETABLE_TAG=latest +#SHEETABLE_PORT=8080 diff --git a/sheetable/compose.yaml b/sheetable/compose.yaml new file mode 100644 index 0000000..94822d9 --- /dev/null +++ b/sheetable/compose.yaml @@ -0,0 +1,12 @@ +services: + # SheetAble + sheetable: + container_name: ${SHEETABLE_CONTAINER_NAME:-SheetAble} + image: vallezw/sheetable:${SHEETABLE_TAG:-latest} + restart: ${RESTART:-unless-stopped} + healthcheck: + test: curl -f http://localhost:8080/ || exit 1 + ports: + - ${SHEETABLE_PORT:-8080}:8080 + volumes: + - /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-sheetable}/${SHEETABLE_CONTAINER_NAME:-SheetAble}/app/config:/app/config