mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 13:27:28 -07:00
Add flatnotes
This commit is contained in:
parent
bc87de3f2a
commit
c29775050c
6
productivity/flatnotes/.env.example
Normal file
6
productivity/flatnotes/.env.example
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
PUID=1000
|
||||||
|
PGID=1000
|
||||||
|
FLATNOTES_AUTH_TYPE="password"
|
||||||
|
FLATNOTES_USERNAME="user"
|
||||||
|
FLATNOTES_PASSWORD="password"
|
||||||
|
FLATNOTES_SECRET_KEY="aLongRandomSeriesOfCharacters"
|
1
productivity/flatnotes/.gitignore
vendored
Normal file
1
productivity/flatnotes/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.env
|
0
productivity/flatnotes/README.md
Normal file
0
productivity/flatnotes/README.md
Normal file
21
productivity/flatnotes/docker-compose.yml
Normal file
21
productivity/flatnotes/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
traefik:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
services:
|
||||||
|
flatnotes:
|
||||||
|
container_name: flatnotes
|
||||||
|
image: dullage/flatnotes:latest
|
||||||
|
networks:
|
||||||
|
- traefik
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
volumes:
|
||||||
|
- "/pwspool/software/flatnotes:/data"
|
||||||
|
- "/pwspool/software/flatnotes/index"
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- traefik.http.routers.flatnotes.rule=Host(`flatnotes.whitney.rip`)
|
||||||
|
- traefik.http.routers.flatnotes.tls=true
|
||||||
|
- traefik.http.routers.flatnotes.tls.certresolver=lets-encrypt
|
||||||
|
- traefik.http.services.flatnotes.loadbalancer.server.port=8080
|
Loading…
x
Reference in New Issue
Block a user