hans-peter / paperless
2 likes
0 forks
1 files
Last active
Paperless ; using an existing mariadb Docker-Image
| 1 | # The folowing Docker-Compose file install paperless-ngx |
| 2 | # using redis as fast memory-database cache and |
| 3 | # Tika as a content analyse- and data-detection Tool and |
| 4 | # Gotenberg for use Paperless with office tools lke Ms-Office or Libre-Office |
| 5 | # To save the Data, Paperless ngx use normally a SQLITE-Database whitch works in Paperless. |
| 6 | # But it is possible to externel Database systems like |
| 7 | # PostgreSQL |
| 8 | # MySQL |
| 9 | # MARIADB |
| 10 | # It is possible to install a new Database-Docker-Image or use an existing Database-Docker-Image |
hirsk / PasswordPusher
0 likes
0 forks
1 files
Last active
Password Pusher is an opensource application to communicate passwords over the web. Links to passwords expire after a certain number of views and/or time has passed.
| 1 | services: |
| 2 | postgres: |
| 3 | image: docker.io/postgres:17 |
| 4 | container_name: PasswordPusher-DB |
| 5 | volumes: |
| 6 | - /volume1/docker/pwpush/db:/var/lib/postgresql/data |
| 7 | environment: |
| 8 | POSTGRES_USER: passwordpusher_user |
| 9 | POSTGRES_PASSWORD: passwordpusher_passwd |
| 10 | POSTGRES_DB: passwordpusher_db |
pmoraitopoulos / Excalidraw with collaboration
1 likes
0 forks
1 files
Last active
I wanted to install excalidraw with collaboration in real time. This is my stack.
| 1 | version: "3.9" |
| 2 | |
| 3 | services: |
| 4 | frontend: |
| 5 | image: alswl/excalidraw:v0.17.3-fork-b1 |
| 6 | container_name: excalidraw-frontend |
| 7 | environment: |
| 8 | - VITE_APP_BACKEND_V2_GET_URL=https://<storage_link_reverse_proxy>/api/v2/scenes/ |
| 9 | - VITE_APP_BACKEND_V2_POST_URL=https://<storage_link_reverse_proxy>/api/v2/scenes/ |
| 10 | - VITE_APP_WS_SERVER_URL=wss://<room_link_reverse_proxy> |
spaskifilip / Cloudflare DNS Updater
0 likes
0 forks
1 files
Last active
Hi all I created (built on an existing creation) a DNS updater for Cloudlfare https://hub.docker.com/r/spaskifilip/cloudflare-dns-updater more detailed instructions are there, but here is my compose file
| 1 | #Docker compose for cloudflare-dns-updater |
| 2 | version: "3.6" |
| 3 | services: |
| 4 | cloudlfare-dns-updater: |
| 5 | image: "spaskifilip/cloudflare-dns-updater:latest" |
| 6 | container_name: "cloudlfare-dns-updater" |
| 7 | volumes: |
| 8 | - app-data:/app # optional unless using the domains.json file and DOMAINS_FILE_PATH variable |
| 9 | environment: |
| 10 | CF_API_TOKEN: "YOUR_API_TOKEN" # Recomended to create a token for the zones, not use the main token |