Skip to content

Commit

Permalink
fix docker compose up
Browse files Browse the repository at this point in the history
  • Loading branch information
kobayurii committed Jul 12, 2024
1 parent fccc9c6 commit 499129a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
profile: "dev-release"
environment:
<<: *common-variables
TX_BUCKET_NAME: near-lake-tx-local
TX_BUCKET_NAME: near-tx-local
STORAGE_EMULATOR_HOST: http://gcs_emulator:9023
RUST_LOG: "read_rpc_server=debug,shadow_data_consistency=debug,info"
restart: on-failure
Expand Down Expand Up @@ -81,7 +81,7 @@ services:
<<: *common-variables
REDIS_URL: redis://redis:6379/
TX_INDEXER_ID: tx-indexer-local
TX_BUCKET_NAME: near-lake-tx-local
TX_BUCKET_NAME: near-tx-local
STORAGE_EMULATOR_HOST: http://gcs_emulator:9023
RUST_LOG: "info"
command: [ "from-interruption" ]
Expand Down Expand Up @@ -120,7 +120,8 @@ services:
gcs_emulator:
image: oittaa/gcp-storage-emulator:latest
restart: on-failure
command: ["start", "--default-bucket", "near-lake-tx-local"]
entrypoint: ["/bin/sh","-c"]
command: ["gcp-storage-emulator create_bucket near-tx-local && gcp-storage-emulator start"]
ports:
- "9023:9023"
environment:
Expand Down

0 comments on commit 499129a

Please sign in to comment.