Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating some docs for latest N|Solid and erbium #40

Merged
merged 1 commit into from Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -35,33 +35,33 @@ docker run -P nodesource/nsolid-console:latest
#### Alpine

```bash
NSOLID_VERSION=3.4.4 make alpine
NSOLID_VERSION=3.7.0 make alpine
```

#### Debian / Ubuntu

```bash
NSOLID_VERSION=3.4.4 make build
NSOLID_VERSION=3.7.0 make build
```

### Publishing Images

```bash
DOCKER_REGISTRY=username NSOLID_VERSION=3.4.4 make publish
DOCKER_REGISTRY=username NSOLID_VERSION=3.7.0 make publish
```

#### Alpine

```bash
DOCKER_REGISTRY=username NSOLID_VERSION=3.4.4 make publish-alpine
DOCKER_REGISTRY=username NSOLID_VERSION=3.7.0 make publish-alpine
```


### Cleaning up

```bash
NSOLID_VERSION=3.4.4 make clean # removes download directories `nsolid-bundle-*`
NSOLID_VERSION=3.4.4 make cleanall # runs `make clean` and removes all docker images with label=nodesource=nsolid
NSOLID_VERSION=3.7.0 make clean # removes download directories `nsolid-bundle-*`
NSOLID_VERSION=3.7.0 make cleanall # runs `make clean` and removes all docker images with label=nodesource=nsolid
```

# Contributing
Expand Down
6 changes: 3 additions & 3 deletions docker-hub/nsolid-storage.md
Expand Up @@ -35,7 +35,7 @@ For convenience, we provide the following docker-compose file as an example to g
version: "2"
services:
storage:
image: nodesource/nsolid-storage:carbon-latest
image: nodesource/nsolid-storage:erbium-latest
container_name: nsolid.storage
ports:
- 4000:4000
Expand All @@ -45,7 +45,7 @@ services:
environment:
- NODE_DEBUG=nsolid
console:
image: nodesource/nsolid-console:carbon-latest
image: nodesource/nsolid-console:erbium-latest
container_name: nsolid.console
environment:
- NODE_DEBUG=nsolid
Expand All @@ -55,7 +55,7 @@ services:
ports:
- 6753:6753
# app:
# image: nodesource/nsolid:carbon-latest
# image: nodesource/nsolid:erbium-latest
# environment:
# - NODE_DEBUG=nsolid
# - NSOLID_APPNAME=in_docker
Expand Down