Skip to content

Commit

Permalink
Merge pull request #7 from SimplyVC/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
VitalyV1337 authored Aug 23, 2021
2 parents 1930433 + 2711a3a commit 5655c68
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 81 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.7

Released on 23rd August 2021

- Changed package version to work with the curren Oasis Version v21.2.8

## 1.0.6

Released on 3rd May 2021
Expand Down
6 changes: 3 additions & 3 deletions docs/INSTALL_AND_RUN.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@ git clone https://github.com/SimplyVC/oasis_api_server
Then run the following commands to build the image:
```bash
cd oasis_api_server
docker build -t simplyvc/oasis_api_server:1.0.6 .
docker build -t simplyvc/oasis_api_server:1.0.7 .
```


##### Downloading the Pre-Built Docker Image from DockerHub

The pre-built Docker image can simply be downloaded by running the following command:
```bash
docker pull simplyvc/oasis_api_server:1.0.6
docker pull simplyvc/oasis_api_server:1.0.7
```

#### Config Files Directory and Permissions
Expand All @@ -175,7 +175,7 @@ docker run --network="host" -p 127.0.0.1:8686:8686 \
--mount type=bind,source=<CONFIG_DIR>,target=/app/config/ \
--mount type=bind,source=<INTERNAL_SOCK_DIR>,target=<PATH_IN_NODE_CONFIG> \
--mount type=bind,source=<INTERNAL_TLS_DIR>,target=<PATH_IN_SENTRY_CONFIG> \
-d simplyvc/oasis_api_server:1.0.6
-d simplyvc/oasis_api_server:1.0.7
```

Note: The port after `-p` and before the `:` is used to route a port from the machine to the internal port of the Docker. If this is changed, any program which refers to the API Docker container must refer to this port.\
Expand Down
24 changes: 11 additions & 13 deletions src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,33 @@ replace (
require (
github.com/Kubuxu/go-os-helper v0.0.1 // indirect
github.com/blevesearch/bleve v1.0.14
github.com/cenkalti/backoff/v4 v4.1.0
github.com/cenkalti/backoff/v4 v4.1.1
github.com/claudetech/ini v0.0.0-20140910072410-73e6100d9d51
github.com/davidlazar/go-crypto v0.0.0-20190912175916-7055855a373f // indirect
github.com/dgraph-io/badger/v2 v2.2007.2
github.com/eapache/channels v1.1.0
github.com/fxamacker/cbor/v2 v2.2.1-0.20200820021930-bafca87fa6db
github.com/go-check/check v0.0.0-20180628173108-788fd7840127 // indirect
github.com/go-kit/kit v0.10.0
github.com/golang/snappy v0.0.3
github.com/gorilla/mux v1.7.4
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/hpcloud/tail v1.0.0
github.com/jackpal/gateway v1.0.5 // indirect
github.com/kainlite/grpc-ping v0.0.0-20190623201649-d8f897f70424
github.com/libp2p/go-libp2p v0.13.0
github.com/libp2p/go-libp2p v0.14.1
github.com/libp2p/go-libp2p-core v0.8.5
github.com/libp2p/go-libp2p-peer v0.2.0 // indirect
github.com/libp2p/go-sockaddr v0.1.0 // indirect
github.com/libp2p/go-stream-muxer v0.0.1 // indirect
github.com/mackerelio/go-osstat v0.1.0
github.com/multiformats/go-multiaddr v0.3.1
github.com/multiformats/go-multiaddr v0.3.2
github.com/multiformats/go-multiaddr-net v0.2.0
github.com/oasisprotocol/deoxysii v0.0.0-20200527154044-851aec403956
github.com/oasisprotocol/ed25519 v0.0.0-20210127160119-f7017427c1ea
github.com/oasisprotocol/oasis-core/go v0.2101.1
github.com/oasisprotocol/oasis-core/go v0.2102.8
github.com/opentracing/opentracing-go v1.2.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.10.0
github.com/prometheus/common v0.20.0
github.com/prometheus/common v0.25.0
github.com/seccomp/libseccomp-golang v0.9.1
github.com/sparrc/go-ping v0.0.0-20190613174326-4e5b6552494c
github.com/spf13/cobra v1.1.1
Expand All @@ -50,16 +48,16 @@ require (
github.com/tendermint/tendermint v0.34.9
github.com/tendermint/tm-db v0.6.4
github.com/thepudds/fzgo v0.2.2
github.com/uber/jaeger-client-go v2.25.0+incompatible
github.com/uber/jaeger-client-go v2.29.1+incompatible
github.com/whyrusleeping/go-logging v0.0.1
github.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f // indirect
github.com/whyrusleeping/mafmt v1.2.8 // indirect
github.com/zenazn/goji v0.9.0
github.com/zondax/ledger-oasis-go v0.3.0
gitlab.com/yawning/dynlib.git v0.0.0-20200603163025-35fe007b0761
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
golang.org/x/net v0.0.0-20201021035429-f5854403a974
gitlab.com/yawning/dynlib.git v0.0.0-20210614104444-f6a90d03b144
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210423184538-5f58ad60dda6
google.golang.org/genproto v0.0.0-20201119123407-9b1e624d6bc4
google.golang.org/grpc v1.36.1
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.26.0
)
Loading

0 comments on commit 5655c68

Please sign in to comment.