This is basic building block of ArsenalIO.
Arsenal values Open Source; thus, all code is open and available.
This application is intended to be run via Docker, but it can also be run via node with npm run start
.
The following instructions assumes you have Docker installed; if not, see here for your system.
docker pull sjones6/arsenal-dock
First, clone this repository.
Then, build with Docker:
docker build -t arsenal-dock .
or via NPM script:
npm run build
With Docker:
docker run --name=arsenal -p 8080:8080 -i arsenal-dock:latest
Via NPM script:
npm run start:docker
This will start Docker, and attach port 80 on the host machine.
Have issues with this container?
Have feature requests?
All community contributions are welcome via GitHub.
Contributions must include tests and appropriate documentation.
Documentation can be generated with JSDoc: npm run docs
. Documentation will be populated in the docs
directory.