You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running using the command: docker run -d --name jupiter-swap-api --memory="512m" -p 8080:8080 jupiter-swap-api
Am I doing something wrong? Because it looks like the logs are showing:
2024-11-03T22:22:00.319846Z INFO jupiter_swap_api: Loading Jupiter router...
2024-11-03T22:22:00.319878Z WARN jupiter_swap_api: Running in poll mode, this mode is not recommended
2024-11-03T22:22:00.319891Z INFO jupiter_swap_api: Using market cache kind: Europa { url: "https://europa2.jup.ag" }
2024-11-03T22:22:00.800243Z INFO jupiter_core::europa_client: Fetching markets from europa server...
2024-11-03T22:22:19.193991Z INFO jupiter_core::europa_client: Fetched 489793 markets from europa server in 18.393658701s
Any help would be really appreciated. Thank you
The text was updated successfully, but these errors were encountered:
tiagoterron
changed the title
Why my container is not reachable after initiating it?
Why my endpoint is not reachable after initiating it?
Nov 3, 2024
Hey folks.
I have been trying to setup my own api and everything seems to be running fine in the logs but somehow I am not able to access it the endpoint.
Dockerfile:
`FROM --platform=linux/amd64 debian:bookworm-slim
RUN apt-get update && apt-get install unzip openssl ca-certificates -y
COPY ./jupiter-swap-api-x86_64-unknown-linux-gnu.zip ./jupiter-swap-api-x86_64-unknown-linux-gnu.zip
RUN unzip jupiter-swap-api-x86_64-unknown-linux-gnu.zip
RUN rm jupiter-swap-api-x86_64-unknown-linux-gnu.zip
RUN chmod +x jupiter-swap-api
ENV RUST_LOG=info
CMD ["./jupiter-swap-api", "--rpc-url", "https://solana-mainnet.g.alchemy.com/v2/api-key"]`
I am running using the command:
docker run -d --name jupiter-swap-api --memory="512m" -p 8080:8080 jupiter-swap-api
Am I doing something wrong? Because it looks like the logs are showing:
Any help would be really appreciated. Thank you
The text was updated successfully, but these errors were encountered: