]> git.immae.eu Git - github/wallabag/wallabag.git/blame - docker-compose.yml
Add the timezone as an argument in the docker-compose.
[github/wallabag/wallabag.git] / docker-compose.yml
CommitLineData
612f5f1e 1version: '2'
2services:
3 nginx:
4 image: nginx
5 ports:
6 - "8080:80"
7 volumes:
8 - ./docker/nginx/nginx.conf:/nginx.conf
9 - ./docker/logs/nginx:/var/log/nginx
10 - .:/var/www/html
11 links:
12 - php:php
13 command: nginx -c /nginx.conf
14 php:
15 build:
16 context: docker/php
17 args:
18 timezone: 'Europe/Monaco'
19 ports:
20 - "9000:9000"
21 volumes:
22 - .:/var/www/html
23 #links:
24 # - "postgres:rdbms"
25 # - "mariadb:rdbms"
26 env_file:
27 - ./docker/php/env
28 # Comment non-used DBMS lines
29 # If all DBMS are commented out, sqlite will be used as default
30 # - ./docker/postgres/env
31 # - ./docker/mariadb/env
32 #postgres:
33 # image: postgres:9
34 # ports:
35 # - "5432:5432"
36 # volumes:
37 # - ./docker/data/pgsql:/var/lib/postgresql/data
38 # env_file:
39 # - ./docker/postgres/env
40 #mariadb:
41 # image: mariadb:10
42 # ports:
43 # - "3306:3306"
44 # volumes:
45 # - ./docker/data/mariadb:/var/lib/mysql
46 # env_file:
47 # - ./docker/mariadb/env