Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit ed8668b

Browse files
committed
separate command and entrypoint
1 parent 1a1548d commit ed8668b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tutorials/docker-compose.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ RUN apt update && \
6161
ca-certificates \
6262
curl
6363
64-
# Install rollkit
6564
RUN curl -sSL https://rollkit.dev/install.sh | bash
65+
# Install rollkit
6666
6767
# Install ignite
6868
RUN curl https://get.ignite.com/cli! | bash
@@ -105,7 +105,8 @@ COPY --from=base /root/.gm /root/.gm
105105
# Keep the container running after it has been started
106106
# CMD tail -f /dev/null
107107
108-
ENTRYPOINT ["gmd", "start","--rollkit.node.aggregator", "--minimum-gas-prices", "0.01photino"]
108+
ENTRYPOINT ["gmd"]
109+
CMD ["start","--rollkit.node.aggregator"]
109110
```
110111

111112
This Dockerfile sets up the environment to build the chain and run the gm-world node. It then sets up the runtime environment to run the chain. This allows you as the developer to modify any files, and then simply rebuild the Docker image to run the new chain.

0 commit comments

Comments
 (0)