mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
26 lines
603 B
YAML
26 lines
603 B
YAML
services:
|
|
firefly:
|
|
image: ${FIREFLY_IMAGE:-fireflyiii/core:latest}
|
|
restart: ${FIREFLY_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/firefly:/var/www/html/storage/upload
|
|
ports:
|
|
- "${FIREFLY_PORT:-8080}:8080"
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
firefly-importer:
|
|
image: ${FIREFLY_IMPORTER_IMAGE:-fireflyiii/data-importer:latest}
|
|
restart: ${FIREFLY_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/firefly:/var/www/html/storage/upload
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|