Package name, script entry point, FastMCP server name, Docker service, and all documentation updated from android-mcp-server to mcadb. Project URLs now point to git.supported.systems. Also removed deprecated docker-compose version attribute.
18 lines
367 B
YAML
18 lines
367 B
YAML
services:
|
|
mcadb:
|
|
build: .
|
|
volumes:
|
|
- /dev/bus/usb:/dev/bus/usb
|
|
- ./src:/app/src
|
|
- ./pyproject.toml:/app/pyproject.toml
|
|
- ./uv.lock:/app/uv.lock
|
|
privileged: true
|
|
stdin_open: true
|
|
tty: true
|
|
environment:
|
|
- PYTHONPATH=/app
|
|
working_dir: /app
|
|
command: ["uv", "run", "mcadb"]
|
|
devices:
|
|
- /dev/bus/usb
|