Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose.yml - github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ed7806de33bb12cf751f3f73b6b9ead5d5b20d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '3'
services:
  hugo:
    image: klakegg/hugo:0.81.0-alpine
    volumes:
      - .:/hugo/themes/hugo-theme-techdoc
    ports:
      - 1313:1313
    working_dir: /hugo/themes/hugo-theme-techdoc/exampleSite
    command: "server --bind 0.0.0.0 -wD --ignoreCache --themesDir ../.. --minify"

  node:
    image: node:lts
    volumes:
      - .:/hugo/themes/hugo-theme-techdoc
    working_dir: /hugo/themes/hugo-theme-techdoc
    environment:
      SHELL: /bin/bash