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

docker-compose.yml « exampleSite - github.com/mazgi/hugo-theme-techlog-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5e71a93002ae6e62e1d77ba03b30218fec2a7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: "3.8"
services:
  website:
    build:
      context: Dockerfile.d/hugo-static-website
      args:
        UID: ${UID:-0}
        GID: ${GID:-0}
    working_dir: /techlog-simple/exampleSite
    command: hugo server --bind 0.0.0.0 --buildDrafts --themesDir="../.."
    volumes:
      - ../:/techlog-simple
    ports:
      - "${BIND_IP_ADDR:-127.0.0.1}:1313:1313"