Skip to content
This repository was archived by the owner on Sep 26, 2020. It is now read-only.

Commit ff95e75

Browse files
committed
fix build
2 parents 9899a22 + cf856ac commit ff95e75

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Jocko
22

3-
[![Build Status](https://semaphoreci.com/api/v1/nash-io/jocko/branches/master/shields_badge.svg)](https://semaphoreci.com/nash-io/jocko) [![codecov](https://codecov.io/gh/nash-io/jocko/branch/master/graph/badge.svg)](https://codecov.io/gh/nash-io/jocko)
3+
[![Build Status](https://semaphoreci.com/api/v1/nash-io/jocko/branches/master/shields_badge.svg)](https://semaphoreci.com/nash-io/jocko) [![codecov](https://codecov.io/gh/nash-io/jocko/branch/master/graph/badge.svg)](https://codecov.io/gh/nash-io/jocko) [![Go Report Card](https://goreportcard.com/badge/github.com/nash-io/jocko)](https://goreportcard.com/report/github.com/nash-io/jocko)
44

55
Distributed commit log service in Go that is wire compatible with Kafka.
66

_examples/cluster/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ This will start a local three node cluster.
55
## Build
66

77
```bash
8-
$ go get github.com/travisjeffery/jocko/...
9-
$ cd $GOPATH/src/github.com/travisjeffery/jocko/cmd/jocko
8+
$ go get github.com/nash-io/jocko/...
9+
$ cd $GOPATH/src/github.com/nash-io/jocko/cmd/jocko
1010
$ go build
1111
```
1212

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ services:
44
jocko_a:
55
build:
66
context: .
7-
image: nash-io/jocko:latest
7+
image: nashblockchain/jocko:latest
88
command: jocko broker --id 0 --raft-addr=jocko_a:9093 --bootstrap --bootstrap-expect=3
99

1010
jocko_b:
1111
build:
1212
context: .
13-
image: nash-io/jocko:latest
13+
image: nashblockchain/jocko:latest
1414
command: jocko broker --join=jocko_a:9094 --id 1 --raft-addr=jocko_b:9093 --bootstrap-expect=3
1515

1616
jocko_c:
1717
build:
1818
context: .
19-
image: nash-io/jocko:latest
19+
image: nashblockchain/jocko:latest
2020
command: jocko broker --join=jocko_a:9094 --id 2 --raft-addr=jocko_c:9093 --bootstrap-expect=3

0 commit comments

Comments
 (0)