aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 95871f33cfafbbcc14399f0267091543c2f9d068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: "2"
services:
    jekyllbuild:
        build:
            context: "."
            dockerfile: "jekyll.docker"
        volumes_from:
            - nginx

    nginx:
        build:
            context: "."
            dockerfile: "nginx.docker"
        ports:
            - "8080:80"
        volumes:
            - /usr/share/nginx/html