added firefly, tested and working

This commit is contained in:
2024-08-08 21:43:11 -07:00
parent bfc216c23e
commit 20ac7f391d
5 changed files with 53 additions and 28 deletions
+15
View File
@@ -0,0 +1,15 @@
# Firefly iii
## Overview
Docker Hub: https://hub.docker.com/r/fireflyiii/core/tags
Documentation: https://docs.firefly-iii.org/how-to/firefly-iii/installation/docker/
Project: https://firefly-iii.org/
Proxy Port: 8080
Proxy Port Importer: 8080
## Notes
The Firefly III Data Importer will ask you for the Firefly III URL and a "Client ID".
You can generate the Client ID at http://localhost/profile (after registering)
The Firefly III URL is: http://app:8080
Other URL's will give 500 | Server Error
+14
View File
@@ -0,0 +1,14 @@
version: '3.8'
services:
firefly:
image: ${FIREFLY_IMAGE:-fireflyiii/core:latest}
restart: unless-stopped
volumes:
- ${VOL_PATH:-./data}/firefly:/var/www/html/storage/upload
firefly-importer:
image: ${FIREFLY_IMPORTER_IMAGE:-fireflyiii/data-importer:latest}
restart: unless-stopped
volumes:
- ${VOL_PATH:-./data}/firefly:/var/www/html/storage/upload
+18
View File
@@ -0,0 +1,18 @@
version: '3.4'
services:
firefly:
extends:
file: ${COOKBOOK}/firefly/docker-compose.yml
service: firefly
firefly-importer:
extends:
file: ${COOKBOOK}/firefly/docker-compose.yml
service: firefly-importer
firefly-db:
extends:
file: ${COOKBOOK}/mariadb/docker-compose.yml
service: mariadb
+6
View File
@@ -0,0 +1,6 @@
VOL_PATH=/docker/vol/portainer-data #HELP: volpath
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# firefly
FIREFLY_IMAGE=fireflyiii/core:latest
FIREFLY_IMPORTER_IMAGE=fireflyiii/data-importer:latest