Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Fix/volume compose (#861)
Browse files Browse the repository at this point in the history
* fix: fix docker compose volume paht

* have different chain id from testnet

* fix docker compose
  • Loading branch information
Eikix authored Mar 15, 2024
1 parent 4d16862 commit 62ae0a5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docker-compose.sepolia.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ services:
- starknet-explorer:/var/lib/postgresql/data/

kakarot-rpc:
image: ghcr.io/kkrt-labs/kakarot-rpc/node:v0.3.1
image: ghcr.io/kkrt-labs/kakarot-rpc/node:latest
pull_policy: always
ports:
- 3030:3030
environment:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- --strk-gas-price
- "0"
- --chain-id
- "kkrt"
- "KKRT"
ports:
- "5050:5050"
networks:
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
- MONGO_DATABASE_NAME=kakarot-local
volumes:
# Mount the volume on workdir and use .env stored in root of the volume
- deployments:/usr/src/app
- deployments:/usr/app
depends_on:
deployments-parser:
condition: service_completed_successfully
Expand Down
2 changes: 1 addition & 1 deletion docker/rpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && \
RUN cargo build --release --bin kakarot-rpc

FROM debian:bookworm-slim AS runtime
WORKDIR /app
WORKDIR /usr/app
COPY --from=builder /app/target/release/kakarot-rpc /usr/local/bin

# Expose the port that the RPC server will run on
Expand Down

0 comments on commit 62ae0a5

Please sign in to comment.