mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +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
|
||||||
@@ -33,31 +33,3 @@ See sample-extends.yml
|
|||||||
```bash
|
```bash
|
||||||
mkdir -p data/proxy data/proxy-letsencrypt
|
mkdir -p data/proxy data/proxy-letsencrypt
|
||||||
```
|
```
|
||||||
|
|
||||||
### env file
|
|
||||||
|
|
||||||
```text
|
|
||||||
# Nginx Proxy Manager
|
|
||||||
PRODDIR=/var/www/stashdomain-com/ #HELP: project_path
|
|
||||||
VOL_PATH=/docker/vol/portainer-data #HELP: volpath
|
|
||||||
COOKBOOK=/home/user/git/docker-compose-cookbooks #HELP: cookbooks
|
|
||||||
PROXY_IMAGE=jc21/nginx-proxy-manager:2.11.3
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
In the project directory you have to run as root as you use port 80 and 443
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Docker Start
|
|
||||||
docker-compose up -d
|
|
||||||
|
|
||||||
# Docker Stop
|
|
||||||
docker-compose down
|
|
||||||
|
|
||||||
# Podman Start
|
|
||||||
sudo podman-compose up -d
|
|
||||||
|
|
||||||
# Podman Stop
|
|
||||||
sudo podman-compose down
|
|
||||||
```
|
|
||||||
Reference in New Issue
Block a user