mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
27 lines
646 B
YAML
27 lines
646 B
YAML
|
version: '3.3'
|
||
|
|
||
|
services:
|
||
|
app:
|
||
|
image: fireflyiii/core:latest
|
||
|
container_name: firefly
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- /mnt/docker-volumes/firefly/upload:/var/www/html/storage/upload
|
||
|
env_file: .env
|
||
|
ports:
|
||
|
- 80:8080
|
||
|
depends_on:
|
||
|
- db
|
||
|
|
||
|
db:
|
||
|
image: mariadb
|
||
|
container_name: firefly-db
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||
|
- MYSQL_USER=firefly
|
||
|
- MYSQL_PASSWORD=MySecretDatabasePassword # if changed --> also update in .env file
|
||
|
- MYSQL_DATABASE=firefly
|
||
|
volumes:
|
||
|
- /mnt/docker-volumes/firefly/mysql:/var/lib/mysql
|