https://github.com/rootfs/daemonbox
a daemon process with inspiration from busybox
https://github.com/rootfs/daemonbox
Last synced: 4 months ago
JSON representation
a daemon process with inspiration from busybox
- Host: GitHub
- URL: https://github.com/rootfs/daemonbox
- Owner: rootfs
- Created: 2016-03-16T14:17:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-16T15:26:49.000Z (about 9 years ago)
- Last Synced: 2024-12-29T21:23:08.173Z (5 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Daemonbox
Daemonbox is a daemon process with inspiration from busybox## Build
```console
$ make godeps
$ make build
```
## Start daemonbox```console
SERVICE_PORT=5000 ./daemonbox
```## Test daemonbox
On a different console:
```console
$curl http://localhost:5000/cmd/mount/`echo -n "-t gluster localhost:/test /mnt" |base64 `
```