workiinng

This commit is contained in:
penwing-bathhouse 2024-09-25 00:44:03 +02:00
parent af0d15d7af
commit 080a83c569
10 changed files with 41 additions and 7 deletions

View file

Binary file not shown.

Binary file not shown.

View file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

Binary file not shown.

View file

@ -1,5 +1,3 @@
version: '3.8'
services: services:
zola: zola:
build: build:
@ -9,20 +7,56 @@ services:
- "8001:80" - "8001:80"
restart: unless-stopped restart: unless-stopped
flatnotes: edit-codicam:
container_name: flatnotes container_name: edit-codicam
image: dullage/flatnotes:latest image: dullage/flatnotes:latest
environment: environment:
PUID: 1000 PUID: 1000
PGID: 1000 PGID: 1000
FLATNOTES_AUTH_TYPE: "password" FLATNOTES_AUTH_TYPE: "password"
FLATNOTES_USERNAME: "user" FLATNOTES_USERNAME: "codicam"
FLATNOTES_PASSWORD: "changeMe!" FLATNOTES_PASSWORD: "codicam"
FLATNOTES_SECRET_KEY: "aLongRandomSeriesOfCharacters" FLATNOTES_SECRET_KEY: "aLongRandomSeriesOfCharacters"
volumes: volumes:
- "./content:/data" - "./content/codicam:/data"
# Optional. Allows you to save the search index in a different location: # Optional. Allows you to save the search index in a different location:
# - "./index:/data/.flatnotes" # - "./index:/data/.flatnotes"
ports: ports:
- "8002:8080" - "8002:8080"
restart: unless-stopped restart: unless-stopped
edit-roboticam:
container_name: edit-roboticam
image: dullage/flatnotes:latest
environment:
PUID: 1000
PGID: 1000
FLATNOTES_AUTH_TYPE: "password"
FLATNOTES_USERNAME: "roboticam"
FLATNOTES_PASSWORD: "roboticam"
FLATNOTES_SECRET_KEY: "aLongRandomSeriesOfCharacters"
volumes:
- "./content/roboticam:/data"
# Optional. Allows you to save the search index in a different location:
# - "./index:/data/.flatnotes"
ports:
- "8003:8080"
restart: unless-stopped
edit-fabricam:
container_name: edit-fabricam
image: dullage/flatnotes:latest
environment:
PUID: 1000
PGID: 1000
FLATNOTES_AUTH_TYPE: "password"
FLATNOTES_USERNAME: "fabricam"
FLATNOTES_PASSWORD: "fabricam"
FLATNOTES_SECRET_KEY: "aLongRandomSeriesOfCharacters"
volumes:
- "./content/fabricam:/data"
# Optional. Allows you to save the search index in a different location:
# - "./index:/data/.flatnotes"
ports:
- "8004:8080"
restart: unless-stopped