An entry for the streamplace vod showcase
1services:
2 runner:
3 build:
4 context: .
5 dockerfile: packages/at-run/runner/Dockerfile
6 ports:
7 - "3000:3000"
8 environment:
9 - PORT=3000
10 - DEV=false
11 volumes:
12 # Mount keys from host
13 - ~/.at-run:/root/.at-run:ro
14 # Optional: persistent cache for bundles
15 - runner-cache:/tmp
16 restart: unless-stopped
17
18volumes:
19 runner-cache: