aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 32f978aaa16b7349dccb5f5d004e78a89f9f5546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
            - ".:/data/site-git"