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,13 @@
services:
flatnotes:
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.${FLATNOTES_HOSTNAME}-rtr.entrypoints=https"
- "traefik.http.routers.${FLATNOTES_HOSTNAME}-rtr.rule=Host(`${FLATNOTES_HOSTNAME}.$DOMAINNAME1`)"
## Middlewares
# - "traefik.http.routers.${FLATNOTES_HOSTNAME}-rtr.middlewares=chain-authelia@file"
- "traefik.http.routers.${FLATNOTES_HOSTNAME}-rtr.middlewares=chain-no-auth@file"
## HTTP Services
- "traefik.http.routers.${FLATNOTES_HOSTNAME}-rtr.service=${FLATNOTES_HOSTNAME}-svc"
- "traefik.http.services.${FLATNOTES_HOSTNAME}-svc.loadbalancer.server.port=8080"

View File

@@ -0,0 +1,7 @@
# Docker Compose v2.20 or greater required to use "include"
include:
#################### NETWORKS ####################
- ../../compose/networks/proxy.yaml
- ../../compose/networks/socket-proxy.yaml
#################### SERVICES ####################
- ../../compose/flatnotes.yaml

View File

@@ -0,0 +1 @@
docker compose --env-file ../../env/.env.stack.flatnotes --env-file ../../env/.env.common config

View File

@@ -0,0 +1,7 @@
# Docker Compose v2.20 or greater required to use "include"
include:
#################### NETWORKS ####################
- ../../compose/networks/proxy.yaml
- ../../compose/networks/socket-proxy.yaml
#################### SERVICES ####################
- ../../compose/flatnotes.yaml

1
docker/flatnotes/dcc.sh Executable file
View File

@@ -0,0 +1 @@
docker compose --env-file ../env/.env.stack.flatnotes --env-file ../env/.env.common config