mirror of
https://github.com/koush/scrypted.git
synced 2026-03-01 16:52:56 +00:00
10 lines
277 B
Bash
10 lines
277 B
Bash
#!/usr/bin/env bash
|
|
# run as privileged so all the devices can be detected and only the necessary ones passed through.
|
|
|
|
docker run --rm \
|
|
--privileged \
|
|
-v "$(pwd):/app" \
|
|
-w /app \
|
|
python:3.12-slim \
|
|
sh -c "pip install ruamel.yaml && python docker-compose-setup.py"
|