refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 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
+12
View File
@@ -0,0 +1,12 @@
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
+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