Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spacebro/docker-spacebro
Docker sources for a docker image with spacebro included
https://github.com/spacebro/docker-spacebro
Last synced: 3 days ago
JSON representation
Docker sources for a docker image with spacebro included
- Host: GitHub
- URL: https://github.com/spacebro/docker-spacebro
- Owner: spacebro
- Created: 2018-12-02T18:22:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-02T18:22:22.000Z (about 6 years ago)
- Last Synced: 2024-11-21T04:11:40.586Z (2 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Spacebro
# Disclaimer
I am learning Docker, this is the first attempt to make a Docker image to run spacebro with spacebroUI
# Start
## Build
```
docker build -t emmanuelgeoffray/spacebro .
```## Run
```
docker run -it --name MySpacebroContainer -p 36000:36000 -p 36001:36001 emmanuelgeoffray/spacebro
```## Log in
```
docker exec -it MySpacebroContainer zsh
```# Use
## Using it with a local spacebro app
```
git clone https://github.com/soixantecircuits/blurrybro
sudo apt-get install imagemagick
nvm use
yarn
node index.js --service.spacebro.host localhost --service.spacebro.port 36000
```## Connect to spacebroUI
Open a browser with http://localhost:36001
# Remove
docker rm MySpacebroContainer
# More
## Run as daemon
```
docker run -d --name MySpacebroContainer -p 36000:36000 -p 36001:36001 emmanuelgeoffray/spacebro
```## Start
```
docker start MySpacebroContainer
```## Stop
```
docker stop MySpacebroContainer
```## More more
Learn Docker