Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelson-lang/nelson-sio-docker
Docker official image for Nelson socket.IO client.
https://github.com/nelson-lang/nelson-sio-docker
docker-image nelson socket-io
Last synced: about 17 hours ago
JSON representation
Docker official image for Nelson socket.IO client.
- Host: GitHub
- URL: https://github.com/nelson-lang/nelson-sio-docker
- Owner: nelson-lang
- License: gpl-2.0
- Created: 2018-06-09T19:12:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T19:12:03.000Z (5 months ago)
- Last Synced: 2024-08-28T20:52:45.180Z (5 months ago)
- Topics: docker-image, nelson, socket-io
- Language: Dockerfile
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nelson-docker
Docker official image for Nelson socket.IO client.
See the Docker Hub page for the full readme on how to use this Docker image and for information regarding contributing and issues.
## build docker
```bash
docker build -t nelson-sio-cli .
```## download nelson image
```bash
docker pull nelsonsoftware/nelson-sio-cli
```## run docker
```bash
docker run -ti nelson-sio-cli
```## Release on dockerhub
```bash
docker rmi $(docker images -q) -f
docker system prune -aexport NELSON_VERSION=1.11.0
export NELSON_VERSION_TAG=4595docker build --build-arg NELSON_VERSION=$NELSON_VERSION --build-arg NELSON_VERSION_TAG=$NELSON_VERSION_TAG -t nelsonsoftware/nelson-sio-cli:latest -t nelsonsoftware/nelson-sio-cli:v$NELSON_VERSION .
docker push nelsonsoftware/nelson-sio-cli:v$NELSON_VERSION
docker push nelsonsoftware/nelson-sio-cli:latest```