Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
erichanson committed Feb 13, 2018
1 parent 8ad2356 commit da15b0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -35,7 +35,7 @@ Aquameta can be installed either via Docker (very easy) or from source (very dif
To install via Docker, the easiest way is to just pull down the latest image from Docker Hub:

```
docker pull aquametalabs/aquameta:0.2.0-rc1
docker pull aquametalabs/aquameta:0.2.0-rc2
```

Alternately, you can clone the Aquameta git repository and build your own Docker image (which takes about 15 minutes):
Expand All @@ -49,14 +49,14 @@ docker build -t aquametalabs/aquameta .
Once you've either pulled or built a Aquameta image, run the container to start it up:

```
docker run -dit -p 80:80 -p 5432:5432 --privileged aquametalabs/aquameta:0.2.0-rc1
docker run -dit -p 80:80 -p 5432:5432 --privileged aquametalabs/aquameta:0.2.0-rc2
```

If you wish to use alternate ports, they can be changed in the `docker run` command.

```
# run the Aquameta webserver on port 8080, and the PostgreSQL server on port 5433
sudo docker run -dit -p 8080:80 -p 5433:5432 --privileged aquametalabs/aquameta:0.2.0-rc1
sudo docker run -dit -p 8080:80 -p 5433:5432 --privileged aquametalabs/aquameta:0.2.0-rc2
```

Make a note of the container-id that this command outputs. You can use it to
Expand Down

0 comments on commit da15b0d

Please sign in to comment.