X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docker-compose.yml;h=50d8c546e0836237b13c2ea763b187e05f380a25;hb=b80841f23c6736aef7485aa3d8ba7cf0af861f64;hp=c774b621717b213bc9a85c5aca28ae781d090bca;hpb=0aafb8dfcb098ae586dc87f3487b4948f8ae2314;p=github%2Fwallabag%2Fwallabag.git diff --git a/docker-compose.yml b/docker-compose.yml index c774b621..50d8c546 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,42 +1,48 @@ -nginx: - image: nginx - ports: - - "8080:80" - volumes: - - ./docker/nginx/nginx.conf:/nginx.conf - - ./docker/logs/nginx:/var/log/nginx - - .:/var/www/html - links: - - php:php - command: nginx -c /nginx.conf -php: - build: docker/php - ports: - - "9000:9000" - volumes: - - .:/var/www/html - #links: - # - "postgres:rdbms" - # - "mariadb:rdbms" - env_file: - - ./docker/php/env - # Comment non-used DBMS lines - # If all DBMS are commented out, sqlite will be used as default - # - ./docker/postgres/env - # - ./docker/mariadb/env -#postgres: -# image: postgres:9 -# ports: -# - "5432:5432" -# volumes: -# - ./docker/data/pgsql:/var/lib/postgresql/data -# env_file: -# - ./docker/postgres/env -#mariadb: -# image: mariadb:10 -# ports: -# - "3306:3306" -# volumes: -# - ./docker/data/mariadb:/var/lib/mysql -# env_file: -# - ./docker/mariadb/env +version: '2' +services: + nginx: + image: nginx + ports: + - "8080:80" + volumes: + - ./docker/nginx/nginx.conf:/nginx.conf + - ./docker/logs/nginx:/var/log/nginx + - .:/var/www/html + links: + - php:php + command: nginx -c /nginx.conf + php: + build: + context: docker/php + args: + # Set here your timezone using one of this: http://php.net/manual/en/timezones.php + timezone: 'Europe/Monaco' + ports: + - "9000:9000" + volumes: + - .:/var/www/html + #links: + # - "postgres:rdbms" + # - "mariadb:rdbms" + env_file: + - ./docker/php/env + # Comment non-used DBMS lines + # If all DBMS are commented out, sqlite will be used as default + # - ./docker/postgres/env + # - ./docker/mariadb/env + #postgres: + # image: postgres:9 + # ports: + # - "5432:5432" + # volumes: + # - ./docker/data/pgsql:/var/lib/postgresql/data + # env_file: + # - ./docker/postgres/env + #mariadb: + # image: mariadb:10 + # ports: + # - "3306:3306" + # volumes: + # - ./docker/data/mariadb:/var/lib/mysql + # env_file: + # - ./docker/mariadb/env