mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 14:32:10 +01:00
28 lines
473 B
YAML
28 lines
473 B
YAML
services:
|
|
db:
|
|
image: mariadb:latest
|
|
command: --max-allowed-packet=64MB
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/mysql:Z
|
|
env_file:
|
|
- ./db.env
|
|
|
|
app:
|
|
image: matomo:latest
|
|
restart: always
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
- ./.matomo/config:/var/www/html/config:z
|
|
- ./.matomo/logs:/var/www/html/logs:z
|
|
- matomo:/var/www/html:z
|
|
env_file:
|
|
- ./db.env
|
|
ports:
|
|
- 8080:80
|
|
|
|
volumes:
|
|
db:
|
|
matomo:
|