docker-compose.yml 2,75 ko
Newer Older
version: '3'

services:
    php:
        build:
            context: ./api
        depends_on:
            - db
        env_file:
            - ./api/.env
        # Comment out these volumes in production
        volumes:
            - ./api:/srv/api:rw,cached
            # If you develop on Linux, uncomment the following line to use a bind-mounted host directory instead
            # - ./api/var:/srv/api/var:rw
            dockerfile: Dockerfile.nginx
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - "8080:80"
        volumes:
            - ./api/public:/srv/api/public:ro

    cache-proxy:
        build:
            context: ./api
            dockerfile: Dockerfile.varnish
        depends_on:
            - api
        # Comment out this volume in production
        volumes:
            - ./api/docker/varnish/conf:/etc/varnish:ro
        ports:
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - "8081:80"

    db:
        # In production, you may want to use a managed database service
        image: postgres:9.6-alpine
        environment:
            - POSTGRES_DB=api
            - POSTGRES_USER=api-platform
            # You should definitely change the password in production
            - POSTGRES_PASSWORD=!ChangeMe!
        volumes:
            - db-data:/var/lib/postgresql/data:rw
            # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
            # - ./docker/db/data:/var/lib/postgresql/data:rw
        ports:
            - "5432:5432"

Laury Sorriaux's avatar
Laury Sorriaux a validé
    client:
        # Use a static website hosting service in production
        # See https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment
Laury Sorriaux's avatar
Laury Sorriaux a validé
            context: ./client
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - ./client/.env
            - ./client:/usr/src/client:rw,cached
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - /usr/src/client/node_modules
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - "80:3000"
Laury Sorriaux's avatar
Laury Sorriaux a validé
    admin:
        # Use a static website hosting service in production
        # See https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment
Laury Sorriaux's avatar
Laury Sorriaux a validé
            context: ./admin
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - ./admin/.env
            - ./admin:/usr/src/admin:rw,cached
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - /usr/src/admin/node_modules
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - "81:3000"

    h2-proxy:
        # Don't use this proxy in prod
        build:
            context: ./h2-proxy
        depends_on:
            - client
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - admin
            - api
            - cache-proxy
        ports:
            - "443:443"
            - "444:444"
Laury Sorriaux's avatar
Laury Sorriaux a validé
            - "8443:8443"
            - "8444:8444"