flatnotes initial commit

This commit is contained in:
2025-02-07 11:20:29 +02:00
parent 84f89dbab6
commit 0c16b80908
8 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
services:
flatnotes:
image: ${FLATNOTES_IMAGE}:${FLATNOTES_TAG}
container_name: ${FLATNOTES_CONTAINER_NAME}
restart: ${FLATNOTES_RESTART_POLICY}
security_opt:
- no-new-privileges:true
networks:
- ${FLATNOTES_NETWORk_ID}
# ports:
# - "8080:8080"
environment:
PUID: ${UID:-1000}
PGID: ${GID:-1000}
TZ: ${TZ}
env_file:
- path: ../env/.env.flatnotes
volumes:
- ${DOCKERDIR}/flatnotes/data:/data
# Optional. Allows you to save the search index in a different location:
# - "./index:/data/.flatnotes"