Skip to content

Commit

Permalink
fix: compose (#884)
Browse files Browse the repository at this point in the history
more fixes
  • Loading branch information
greged93 authored Mar 21, 2024
1 parent 3dd7037 commit 55231ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,3 @@ jobs:
spell_check:
name: Spell check
uses: ./.github/workflows/spell_check.yml

build:
name: Build binaries
uses: ./.github/workflows/kakarot_rpc.yml
16 changes: 8 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ services:
- --strk-gas-price
- "0"
- --chain-id
- "KKRT"
- KKRT
ports:
- "5050:5050"
- 5050:5050
networks:
- internal
restart: on-failure
Expand Down Expand Up @@ -48,8 +48,8 @@ services:
image: apteno/alpine-jq:2023-07-24
# Parse deployments and save the result to .env file
entrypoint:
- "/bin/sh"
- "-c"
- /bin/sh
- -c
# First line overrides an existing .env, if any.
# This is to make sure that it is clean even though docker volume was not cleaned.
- |
Expand Down Expand Up @@ -118,13 +118,13 @@ services:

clone-repo:
image: docker.io/alpine/git:latest
entrypoint: "/bin/sh"
entrypoint: /bin/sh
command:
- "-c"
- -c
# clone the repository in `/code`, removing any old copy.
- "cd /code && rm -rf kakarot-indexer && git clone -v https://github.com/kkrt-labs/kakarot-indexer.git"
- cd /code && rm -rf kakarot-indexer && git clone -v https://github.com/kkrt-labs/kakarot-indexer.git
volumes:
- "indexer_code:/code"
- indexer_code:/code
restart: on-failure

indexer:
Expand Down
1 change: 1 addition & 0 deletions docker/rpc/Dockerfile.cross
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM --platform=$TARGETPLATFORM debian:bookworm
WORKDIR /usr/src/app

# Filled by docker buildx
ARG TARGETARCH
Expand Down

0 comments on commit 55231ff

Please sign in to comment.