summaryrefslogtreecommitdiffstats
path: root/tests/exampleSiteWithVideo/docker-compose.desktop.yml
blob: e4eedad329b9861e8115ebabbd762fb5a588cb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
  hugo:
    image: hugomods/hugo:latest
    volumes:
      - type: bind
        source: ../../../
        target: /src
    command: ["hugo", "server", "--logLevel=info", "--bind=0.0.0.0", "--baseURL=http://hugo", "--disableLiveReload", "--source=/src/hugo-split-theme/tests/exampleSiteWithVideo", "--themesDir=/src"]
    ports:
      - "1313:1313"

  sitespeed:
    image: sitespeedio/sitespeed.io:latest
    volumes:
      - type: bind
        source: .
        target: /sitespeed.io
    depends_on:
      - hugo
    command: ["--budget.configPath=budget.desktop.json", "urls.txt"]