| 1234567891011121314151617181920212223242526272829 |
- version: '2'
- services:
- db:
- image: mariadb:latest
- volumes:
- - ./mysql/runtime:/var/lib/mysql
- environment:
- - MYSQL_ROOT_PASSWORD
- app:
- image: matomo:fpm
- links:
- - db
- volumes:
- - ./config:/var/www/html/config
- cron:
- image: matomo:fpm
- links:
- - db
- volumes_from:
- - app
- entrypoint: |
- bash -c 'bash -s <<EOF
- trap "break;exit" SIGHUP SIGINT SIGTERM
- while /bin/true; do
- su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
- sleep 3600
- done
- EOF'
|