Skip to content

Commit

Permalink
use new devnet and docker image
Browse files Browse the repository at this point in the history
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
  • Loading branch information
jsign committed Jun 4, 2021
1 parent 6f72c3a commit 075bc30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ localnet:

up: down
DOCKER_BUILDKIT=1 \
LOTUS_IMAGE_TAG=v1.8.0 \
LOTUS_IMAGE_TAG=v1.9.0 \
docker-compose \
-p mainnet \
-f docker-compose.yaml \
Expand All @@ -31,7 +31,7 @@ up: down

down:
DOCKER_BUILDKIT=1 \
LOTUS_IMAGE_TAG=v1.8.0 \
LOTUS_IMAGE_TAG=v1.9.0 \
docker-compose \
-p mainnet \
-f docker-compose.yaml \
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-localnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- 5001:5001

lotus:
image: textile/lotus-devnet:v1.8.0
image: textile/lotus-devnet:v1.9.0
ports:
- 7777:7777
environment:
Expand Down
2 changes: 1 addition & 1 deletion tests/ldevnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func LaunchDevnetDocker(t TestingTWithCleanup, numMiners, speed int, ipfsMaddr s
}

repository := "textile/lotus-devnet"
tag := "v1.8.0"
tag := "v1.9.0"
lotusDevnet, err := pool.RunWithOptions(&dockertest.RunOptions{Repository: repository, Tag: tag, Env: envs, Mounts: mounts})
require.NoError(t, err)
err = lotusDevnet.Expire(180)
Expand Down

0 comments on commit 075bc30

Please sign in to comment.