1234567891011121314151617181920212223242526272829303132 |
- version: '2'
- services:
- matomo:
- image: matomo
- environment:
- GID: '1000'
- UID: '1000'
- stdin_open: true
- volumes:
- - /mnt/matomo/config:/var/www/html/config
- tty: true
- links:
- - matomo-db:db_matomo
- ports:
- - 82:80/tcp
- labels:
- io.rancher.container.pull_image: always
- matomo-db:
- image: mariadb:latest
- environment:
- MYSQL_ROOT_PASSWORD: vergessen1974
- MYSQL_DATABASE: matomo
- MYSQL_USER: matomo
- MYSQL_PASSWORD: vergessen1974
- stdin_open: true
- volumes:
- - /mnt/matomo/db:/var/lib/mysql
- tty: true
- command:
- - --max_allowed_packet=72505856
- labels:
- io.rancher.container.pull_image: always
|