X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docker-compose.yml;h=0f8f0970542a73ee89a26340cf681e9660ffae44;hb=77728731a4fefde54d154b10cbcef9c51a23c1b1;hp=a255b070490cbb088c092a17c0f996b2ea0d69bd;hpb=87c9995b6c61a9f5cde3771bd4f9d44b5da26c43;p=github%2Fwallabag%2Fwallabag.git diff --git a/docker-compose.yml b/docker-compose.yml index a255b070..0f8f0970 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,9 @@ version: '2' services: nginx: - image: nginx + image: nginx:alpine ports: - - "8080:80" + - "8000:80" volumes: - ./docker/nginx/nginx.conf:/nginx.conf - ./docker/logs/nginx:/var/log/nginx @@ -11,6 +11,7 @@ services: links: - php:php command: nginx -c /nginx.conf + php: build: context: docker/php @@ -30,15 +31,17 @@ services: # If all DBMS are commented out, sqlite will be used as default # - ./docker/postgres/env # - ./docker/mariadb/env - #postgres: - # image: postgres:9 + + # postgres: + # image: postgres:11-alpine # ports: # - "5432:5432" # volumes: # - ./docker/data/pgsql:/var/lib/postgresql/data # env_file: # - ./docker/postgres/env - #mariadb: + + # mariadb: # image: mariadb:10 # ports: # - "3306:3306" @@ -46,7 +49,13 @@ services: # - ./docker/data/mariadb:/var/lib/mysql # env_file: # - ./docker/mariadb/env - rabbitmq: - image: rabbitmq:3-management + + # rabbitmq: + # image: rabbitmq:3-management-alpine + # ports: + # - "15672:15672" + + redis: + image: redis:4-alpine ports: - - "15672:15672" + - "6379:6379"