aboutsummaryrefslogtreecommitdiffstats
path: root/csit.infra.hugo/docker-compose.yaml
blob: 5728f5560a5145c99e3826dae6d261e7332df003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: "3"
services:
  init:
    image: "klakegg/hugo:ext-alpine"
    command: "mod get -u"
    volumes:
      - "../docs:/src"
  build:
    image: "klakegg/hugo:ext-alpine"
    depends_on:
      - "init"
    volumes:
      - "../docs:/src"
      - "../csit.infra.dash:/cdash"
  server:
    image: "klakegg/hugo:ext-alpine"
    command: "server --minify"
    depends_on:
      - "init"
    volumes:
      - "../docs:/src"
    ports:
      - "1313:1313"