Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Readme: Omit '-f Dockerfile' where not needed
  • Loading branch information
RandomByte committed Feb 12, 2018
commit f891f2e934a893b606add2fdebeede4f1e2254af
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $ docker service create \
If you would like to build the image from source run the following command:

```
$ docker build -f Dockerfile -t visualizer-arm:latest .
$ docker build -t visualizer-arm:latest .
```

[View on Docker Hub](https://hub.docker.com/r/alexellis2/visualizer-arm/tags/)
Expand Down Expand Up @@ -118,7 +118,7 @@ docker run -d -p 8080:8080 -e DOCKER_HOST=${ip}:2376 -e DOCKER_TLS_VERIFY=1 -v "

To build an up-to-date image for any architecture supported by [node:8-alpine](https://hub.docker.com/_/node/) (currently `amd64`, `arm32v6`, `arm32v7`, `arm64v8`, `i386`, `ppc64le` and `s390x`), execute the following command on a device of your target architecture:
```
$ docker build -f Dockerfile -t visualizer-custom:latest .
$ docker build -t visualizer-custom:latest .
```

Afterwards you can start visualizer by using any of the commands stated [above](#docker-swarm-visualizer). Just replace `dockersamples/visualizer` with `visualizer-custom`. For example:
Expand Down