Files
carplay/docker-compose-example.yml

31 lines
758 B
YAML
Raw Normal View History

2026-05-01 21:51:25 -07:00
services:
frame-stream-player:
build: .
image: frame-stream-player:latest
container_name: frame-stream-player
restart: unless-stopped
ports:
- "3000:3000"
environment:
PORT: "3000"
NODE_ENV: production
2026-05-01 22:41:51 -07:00
FFMPEG_LOG_LEVEL: warning
FFMPEG_INPUT_SEEKABLE: "0"
2026-05-01 22:08:50 -07:00
RECENT_URLS_PATH: /app/data/recent-urls.json
2026-05-01 21:51:25 -07:00
extra_hosts:
- "host.docker.internal:host-gateway"
2026-05-01 22:08:50 -07:00
volumes:
- frame-stream-data:/app/data
2026-05-01 21:51:25 -07:00
# CPU decoding is the default and does not need device passthrough.
#
# Optional Intel/AMD VAAPI device passthrough:
# devices:
# - "/dev/dri:/dev/dri"
#
# Optional NVIDIA passthrough with Docker Compose v2:
# gpus: all
2026-05-01 22:08:50 -07:00
volumes:
frame-stream-data: