Skip to content

Commit

Permalink
updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kendavis2 committed Sep 18, 2019
1 parent adefabf commit bb57069
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ When the repository has been cloned or the project shared, running `$ cstore pul
Ensure a supported [storage](docs/STORES.md) location is already set up and available.

#### Install/Upgrade ####
mac: `$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_darwin_amd64 && sudo chmod +x /usr/local/bin/cstore`
mac: `$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_darwin_amd64 && sudo chmod +x /usr/local/bin/cstore`

linux: `$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_linux_386 && sudo chmod +x /usr/local/bin/cstore`
linux: `$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_linux_386 && sudo chmod +x /usr/local/bin/cstore`

win: `wget https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_windows_amd64.exe` (add download dir to the PATH environment variable)
win: `wget https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_windows_amd64.exe` (add download dir to the PATH environment variable)

The first push creates a catalog file in the same directory that can be checked into source control. Subsequent commands executed in the same directory will use the existing catalog.

Expand Down
4 changes: 2 additions & 2 deletions docs/DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ exec ./my-application
```docker
ENTRYPOINT ["./docker-entrypoint.sh"]
```
4. Update the `Dockerfile` to install [cStore](https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_linux_amd64) for Linux (or the appropriate os) adding execute permissions.
4. Update the `Dockerfile` to install [cStore](https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_linux_amd64) for Linux (or the appropriate os) adding execute permissions.
```docker
RUN curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_linux_386 && chmod +x /usr/local/bin/cstore
RUN curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_linux_386 && chmod +x /usr/local/bin/cstore
```
5. Update the `docker-compose.yml` file to specify which environment config should be pulled by the `docker-entrypoint.sh` script.
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/MIGRATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $ cd {{PROJECT}}
$ cstore pull
$ mv cstore.yml cstore.yml.v1
$ mv /usr/local/bin/cstore /usr/local/bin/cstore-v1
$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.0-alpha/cstore_darwin_amd64 && sudo chmod +x /usr/local/bin/cstore
$ sudo curl -L -o /usr/local/bin/cstore https://github.com/turnerlabs/cstore/releases/download/v2.6.1-alpha/cstore_darwin_amd64 && sudo chmod +x /usr/local/bin/cstore
$ cstore push // files pulled from old version of cStore
```

Expand Down

0 comments on commit bb57069

Please sign in to comment.