-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
33 lines (31 loc) · 725 Bytes
/
docker-compose-dev.yml
File metadata and controls
33 lines (31 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '3.3'
services:
firefly:
image: fireflyiii/core:latest
container_name: firefly-dev
environment:
- APP_KEY=3tPZNJV1gI90B5a5S3k58o7RV16ZlHRX
- DB_HOST=mariadb-dev
- DB_PORT=3306
- DB_CONNECTION=mysql
- DB_DATABASE=firefly
- DB_USERNAME=firefly
- DB_PASSWORD=firefly
- MAIL_MAILER=log
- APP_DEBUG=true
- TZ=Europe/London
ports:
- 8080:8080
depends_on:
- mariadb
mariadb:
image: mariadb
container_name: mariadb-dev
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_USER=firefly
- MYSQL_PASSWORD=firefly
- MYSQL_DATABASE=firefly
- TZ=Europe/London
ports:
- 3306:3306