aboutsummaryrefslogtreecommitdiffstats
path: root/csit.infra.hugo/docker-compose.yaml
blob: f25add2134cef8503826234931101f981d6d328e (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:
  cdocs-init:
    image: "klakegg/hugo:ext-alpine"
    command: "mod get github.com/alex-shpak/hugo-book@v0.0.0-20230808113920-3f1bcccbfb24"
    volumes:
      - "../docs:/src"
  cdocs-build:
    image: "klakegg/hugo:ext-alpine"
    depends_on:
      - "cdocs-init"
    volumes:
      - "../docs:/src"
      - "../csit.infra.dash:/csit.infra.dash"
  cdocs-run:
    image: "klakegg/hugo:ext-alpine"
    command: "server --minify"
    depends_on:
      - "cdocs-init"
    volumes:
      - "../docs:/src"
    ports:
      - "1313:1313"