diff --git a/content/codicam/.flatnotes/4_WRITELOCK b/content/codicam/.flatnotes/4_WRITELOCK new file mode 100755 index 0000000..e69de29 diff --git a/content/codicam/.flatnotes/4_r5n5v55ca650dk5o.seg b/content/codicam/.flatnotes/4_r5n5v55ca650dk5o.seg new file mode 100644 index 0000000..fb53a0e Binary files /dev/null and b/content/codicam/.flatnotes/4_r5n5v55ca650dk5o.seg differ diff --git a/content/codicam/.flatnotes/_4_4.toc b/content/codicam/.flatnotes/_4_4.toc new file mode 100644 index 0000000..f3b0963 Binary files /dev/null and b/content/codicam/.flatnotes/_4_4.toc differ diff --git a/content/fabricam/.flatnotes/4_WRITELOCK b/content/fabricam/.flatnotes/4_WRITELOCK new file mode 100755 index 0000000..e69de29 diff --git a/content/fabricam/.flatnotes/4_ei9xo5m3p5ir2sfz.seg b/content/fabricam/.flatnotes/4_ei9xo5m3p5ir2sfz.seg new file mode 100644 index 0000000..a35f3cb Binary files /dev/null and b/content/fabricam/.flatnotes/4_ei9xo5m3p5ir2sfz.seg differ diff --git a/content/fabricam/.flatnotes/_4_2.toc b/content/fabricam/.flatnotes/_4_2.toc new file mode 100644 index 0000000..0698125 Binary files /dev/null and b/content/fabricam/.flatnotes/_4_2.toc differ diff --git a/content/roboticam/.flatnotes/4_7ng12q2gzstwm8yt.seg b/content/roboticam/.flatnotes/4_7ng12q2gzstwm8yt.seg new file mode 100644 index 0000000..d833379 Binary files /dev/null and b/content/roboticam/.flatnotes/4_7ng12q2gzstwm8yt.seg differ diff --git a/content/roboticam/.flatnotes/4_WRITELOCK b/content/roboticam/.flatnotes/4_WRITELOCK new file mode 100755 index 0000000..e69de29 diff --git a/content/roboticam/.flatnotes/_4_2.toc b/content/roboticam/.flatnotes/_4_2.toc new file mode 100644 index 0000000..c49b932 Binary files /dev/null and b/content/roboticam/.flatnotes/_4_2.toc differ diff --git a/docker-compose.yml b/docker-compose.yml index abafebc..dbfbc8d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3.8' - services: zola: build: @@ -9,20 +7,56 @@ services: - "8001:80" restart: unless-stopped - flatnotes: - container_name: flatnotes + edit-codicam: + container_name: edit-codicam image: dullage/flatnotes:latest environment: PUID: 1000 PGID: 1000 FLATNOTES_AUTH_TYPE: "password" - FLATNOTES_USERNAME: "user" - FLATNOTES_PASSWORD: "changeMe!" + FLATNOTES_USERNAME: "codicam" + FLATNOTES_PASSWORD: "codicam" FLATNOTES_SECRET_KEY: "aLongRandomSeriesOfCharacters" volumes: - - "./content:/data" + - "./content/codicam:/data" # Optional. Allows you to save the search index in a different location: # - "./index:/data/.flatnotes" ports: - "8002:8080" 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