You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
22 lines
535 B
1 year ago
|
version: '3.3'
|
||
|
|
||
|
services:
|
||
|
fireflyiii:
|
||
|
image: fireflyiii/core:latest
|
||
|
volumes:
|
||
|
- ${APPSDIR}/firefly/firefly_iii_upload:/var/www/html/storage/upload
|
||
|
env_file: .env
|
||
|
ports:
|
||
|
- 9912:8080
|
||
|
depends_on:
|
||
|
- fireflyiiidb
|
||
|
fireflyiiidb:
|
||
|
image: yobasystems/alpine-mariadb:latest
|
||
|
environment:
|
||
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||
|
- MYSQL_USER=firefly
|
||
|
- MYSQL_PASSWORD=secret_firefly_password
|
||
|
- MYSQL_DATABASE=firefly
|
||
|
volumes:
|
||
|
- ${APPSDIR}/firefly/firefly_db:/var/lib/mysql
|