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"