Created
September 27, 2021 15:10
-
-
Save vodolaz/59157c501d2b8ff7d175fcded136bbe9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.1" | |
services: | |
solana: | |
container_name: solana | |
image: cybercoredev/solana:${SOLANA_REVISION:-v1.7.9-resources} | |
environment: | |
- SOLANA_URL=http://solana:8899 | |
- RUST_LOG=solana_runtime::system_instruction_processor=trace,solana_runtime::message_processor=debug,solana_bpf_loader=debug,solana_rbpf=debug | |
hostname: solana | |
expose: | |
- "8899" | |
- "9900" | |
- "8900" | |
- "8001" | |
- "8001-8009/udp" | |
networks: | |
- net | |
proxy: | |
container_name: proxy | |
image: cybercoredev/proxy:0.2.0 | |
environment: | |
- CONFIG=ci | |
hostname: proxy | |
ports: | |
- 127.0.0.1:9090:9090 | |
expose: | |
- "9090" | |
networks: | |
- net | |
networks: | |
net: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment