]> git.p6c8.net - jirafeau_project.git/blob - docker-compose.yaml
example docker compose with availabilities (defaulted according to config)
[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 AVAILABILITIES: |
14 {
15 "minute": true,
16 "hour": true,
17 "day": true,
18 "week": true,
19 "fortnight": true,
20 "month": true,
21 "quarter": false,
22 "year": false,
23 "none": false
24 }
25 ports:
26 - 8080:80
27

patrick-canterino.de