Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed Sep 9, 2024
1 parent fa781f1 commit 99e3de9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ go run cmd/sidecar/main.go
mkdir ./sqlite || true

docker run -it --rm \
-v $(pwd)/sqlite:/sqlite \
-e SIDECAR_DEBUG=false \
-e SIDECAR_ETHEREUM_RPC_BASE_URL="http://54.198.82.217:8545" \
-e SIDECAR_ENVIRONMENT="testnet" \
-e SIDECAR_NETWORK="holesky" \
-e SIDECAR_ETHERSCAN_API_KEYS="" \
-e SIDECAR_STATSD_URL="localhost:8125" \
-e SIDECAR_SQLITE_DB_FILE_PATH="/sqlite/sidecar.db" \
public.ecr.aws/z6g0f8n7/go-sidecar:latest \
/build/bin/sidecar
-v "$(pwd)/sqlite:/sqlite" \
--tty -i \
public.ecr.aws/z6g0f8n7/go-sidecar:latest /build/bin/sidecar
```

### Build and run a container locally
Expand All @@ -45,8 +45,8 @@ docker run \
-e "SIDECAR_ETHERSCAN_API_KEYS=''" \
-e "SIDECAR_STATSD_URL=localhost:8125" \
-e "SIDECAR_SQLITE_DB_FILE_PATH=/sqlite/sidecar.db" \
--interactive --tty \
-v "$(pwd)/sqlite:/sqlite" \
-v "$(pwd)/sqlite:/sqlite" \
--tty -i \
go-sidecar:latest /build/bin/cmd/sidecar
```

Expand Down

0 comments on commit 99e3de9

Please sign in to comment.