79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
|
|
#
|
||
|
|
# 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
|
||
|
|
#
|
||
|
|
|
||
|
|
services:
|
||
|
|
app:
|
||
|
|
image: fireflyiii/core:latest
|
||
|
|
hostname: app
|
||
|
|
container_name: firefly_iii_core
|
||
|
|
networks:
|
||
|
|
- firefly_iii
|
||
|
|
restart: always
|
||
|
|
volumes:
|
||
|
|
- /volume1/docker/fireflyiii/upload:/var/www/html/storage/upload
|
||
|
|
env_file: stack.env
|
||
|
|
ports:
|
||
|
|
- '8080:8080'
|
||
|
|
depends_on:
|
||
|
|
- db
|
||
|
|
db:
|
||
|
|
image: mariadb:lts
|
||
|
|
hostname: db
|
||
|
|
container_name: firefly_iii_db
|
||
|
|
networks:
|
||
|
|
- firefly_iii
|
||
|
|
restart: always
|
||
|
|
env_file: stack.env
|
||
|
|
volumes:
|
||
|
|
- /volume1/docker/fireflyiii/db:/var/lib/mysql
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
||
|
|
interval: 5s
|
||
|
|
timeout: 3s
|
||
|
|
retries: 10
|
||
|
|
|
||
|
|
importer:
|
||
|
|
image: fireflyiii/data-importer:latest
|
||
|
|
hostname: importer
|
||
|
|
restart: always
|
||
|
|
container_name: firefly_iii_importer
|
||
|
|
networks:
|
||
|
|
- firefly_iii
|
||
|
|
ports:
|
||
|
|
- '8081:8080'
|
||
|
|
depends_on:
|
||
|
|
- app
|
||
|
|
env_file: stack.env
|
||
|
|
|
||
|
|
cron:
|
||
|
|
#
|
||
|
|
# To make this work, set STATIC_CRON_TOKEN in your .env file or as an environment variable
|
||
|
|
# The STATIC_CRON_TOKEN must be *exactly* 32 characters long
|
||
|
|
# Use this URL for inspiration: https://www.random.org/strings/?num=1&len=32&digits=on&upperalpha=on&loweralpha=on&unique=on&format=html&rnd=new
|
||
|
|
#
|
||
|
|
image: alpine
|
||
|
|
container_name: firefly_iii_cron
|
||
|
|
restart: always
|
||
|
|
env_file: stack.env
|
||
|
|
command: sh -c "
|
||
|
|
apk add tzdata && \
|
||
|
|
(ln -fs /usr/share/zoneinfo/$$TZ /etc/localtime || true) && \
|
||
|
|
echo \"0 3 * * * wget -qO- http://app:8080/api/v1/cron/$$STATIC_CRON_TOKEN;echo\"
|
||
|
|
| crontab - && \
|
||
|
|
crond -f -L /dev/stdout"
|
||
|
|
networks:
|
||
|
|
- firefly_iii
|
||
|
|
depends_on:
|
||
|
|
- app
|
||
|
|
volumes:
|
||
|
|
firefly_iii_upload:
|
||
|
|
firefly_iii_db:
|
||
|
|
|
||
|
|
networks:
|
||
|
|
firefly_iii:
|
||
|
|
driver: bridge
|