https://github.com/txn2/kagent
https://github.com/txn2/kagent
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/txn2/kagent
- Owner: txn2
- License: apache-2.0
- Created: 2018-06-01T06:34:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-01T17:56:53.000Z (about 8 years ago)
- Last Synced: 2025-07-29T06:37:59.518Z (11 months ago)
- Language: Makefile
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kagent
Production Arm:
```bash
sudo docker run -d \
--restart="always" \
--privileged \
--network=host \
-v /var/run/docker.sock:/var/run/docker.sock \
--name=kagent \
txn2/kagent:armhf-latest
```
Development testing mounts the ./configs directory
```bash
docker stop $(docker ps -q) && docker rm $(docker ps -aq)
sudo docker run --rm \
--privileged \
--network=host \
-p 2700:2700 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$(pwd)/configs":/configs \
-e AGENT_CFG_URL=file://configs/defs.json \
-e AGENT_AUTH_URL=file://configs/defs.json \
--name=kagent \
txn2/txagent:1.0.4
```