Skip to content

Commit

Permalink
fixed tesseracts
Browse files Browse the repository at this point in the history
  • Loading branch information
vOROn200 committed Jun 18, 2019
1 parent ed02bbb commit 38262bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,6 @@ tesseracts-build:
@docker build -t "${TESSERACTS_DOCKER_IMAGE}" ./docker/tesseracts

tesseracts-up:
@rm -rf build
@mkdir build
@docker-compose up "${TESSERACTS_DOCKER_IMAGE}"

tesseracts-down:
Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,12 @@ services:
- ETHEREUM_JSONRPC_HTTP_URL=http://geth:8545
- COIN=DAI
tesseracts:
image: "gluk64/franklin-tesseracts"
build: ./build
image: "adria0/tesseracts"
command: --cfg /tesseracts.toml
ports:
- "8000:8000"
volumes:
- ./docker/tesseracts/tesseracts.toml:/tesseracts.toml
- type: bind
source: ./volumes/tesseracts
target: /var/lib/tesseracts/data
Expand Down
4 changes: 2 additions & 2 deletions docker/tesseracts/tesseracts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ui_title = "Franklin"
# database ----------------------------------------

# where the database is located
db_path = "/tmp/db"
db_path = "/var/lib/tesseracts/data"

# true|false if we want to scan blocks and save it into db
scan = false
Expand Down Expand Up @@ -55,4 +55,4 @@ solc_bypass = true
# server --------------------------------------------

# http server binding (e.g. "0.0.0.0:8000")
bind = "0.0.0.0:8000"
bind = "localhost:8000"

0 comments on commit 38262bd

Please sign in to comment.