mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
added firefly, tested and working
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user