-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.yml
More file actions
44 lines (39 loc) · 826 Bytes
/
service.yml
File metadata and controls
44 lines (39 loc) · 826 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
34
35
36
37
38
39
40
41
42
43
name: matomo
type: service
from: php
icon: matomo
title: Matomo 5
scalable: false
update: auto
labels:
- matomo
options:
- version: '8.3'
default: true
build:
connect: true
dockerfile: Dockerfile
templates:
- name: vanilla
title: Vanilla Matomo
repo: https://github.com/matomo-org/matomo
tag: ^5
pipeline: pipeline.yml
env:
- name: MATOMO_DATABASE_USERNAME
value: '{{links.db.database.user.name}}'
- name: MATOMO_DATABASE_PASSWORD
value: '{{links.db.database.user.password}}'
secret: true
- name: MATOMO_DATABASE_HOST
value: '{{links.db.database.host}}'
- name: MATOMO_DATABASE_DBNAME
value: '{{links.db.database.db.name}}'
actions:
- name: update
title: Run update
args:
- sh
- -c
- 'test ! -f config/config.ini.php || php console core:update --yes'
type: post_deploy