]> git.p6c8.net - jirafeau_project.git/blob - docker-compose.yaml
Merge branch 'fix_for_issue_20' into 'next-release'
[jirafeau_project.git] / docker-compose.yaml
1 services:
2 web:
3 build:
4 no_cache: true
5 #args:
6 # INI: php_debug #change the ini
7 context: . # or ../Dockerfile if we put it in the ./docker folder
8 volumes:
9 - ./jirafeau_data:/data
10 environment:
11 ADMIN_PASSWORD: p4ssw0rd
12 #LANG: en
13 #WEB_ROOT: 'my.domain.de'
14 #STYLE: 'my_jirafeau_theme'
15 #DARK_STYLE: 'my_jirafeau_theme'
16 AVAILABILITIES: |
17 {
18 "minute": true,
19 "hour": true,
20 "day": true,
21 "week": true,
22 "fortnight": true,
23 "month": true,
24 "quarter": false,
25 "year": false,
26 "none": false
27 }
28 ports:
29 - 8080:80
30

patrick-canterino.de