version: '2' services: matomo: image: wonderfall/matomo environment: GID: '1000' UID: '1000' stdin_open: true volumes: - /mnt/docker/matomo/config:/config tty: true links: - matomo-db:db_matomo ports: - 82:8888/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/docker/matomo/db:/var/lib/mysql tty: true labels: io.rancher.container.pull_image: always