forked from onemorebsmith/kaspa-stratum-bridge
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from lemois-1337/2023_stratum_vardiff_support
[Stratum][CI] Added vardiff support and Hive integration
- Loading branch information
Showing
30 changed files
with
587 additions
and
289 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
volumes: | ||
prometheus_data: {} | ||
services: | ||
kls_bridge: | ||
build: | ||
context: . | ||
no_cache: true | ||
container_name: kls_bridge | ||
restart: unless-stopped | ||
user: "0" | ||
command: | ||
- '-stats=false' | ||
- '-karlsen=host.docker.internal:42110' | ||
ports: | ||
- 5555:5555 | ||
- 2114:2114 | ||
extra_hosts: | ||
- host.docker.internal:host-gateway | ||
grafana: | ||
image: grafana/grafana-oss:latest | ||
container_name: kls_grafana | ||
restart: unless-stopped | ||
user: "0" | ||
volumes: | ||
- ./docker/grafana:/var/lib/grafana | ||
# env_file: | ||
# - ./docker/grafana.env | ||
ports: | ||
- 3000:3000 | ||
extra_hosts: | ||
- host.docker.internal:host-gateway | ||
prometheus: | ||
image: prom/prometheus:latest | ||
container_name: kls_prom | ||
restart: unless-stopped | ||
volumes: | ||
- prometheus_data:/prometheus | ||
- ./docker/prometheus-internal.yml:/etc/prometheus/prometheus.yml | ||
ports: | ||
- 9090:9090 | ||
extra_hosts: | ||
- host.docker.internal:host-gateway |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
services: | ||
kls_bridge: | ||
build: | ||
context: . | ||
no_cache: true | ||
container_name: kls_bridge | ||
restart: unless-stopped | ||
user: "0" | ||
command: | ||
- '-stats=false' | ||
- '-karlsen=host.docker.internal:42110' | ||
ports: | ||
- 5555:5555 | ||
- 2114:2114 | ||
extra_hosts: | ||
- host.docker.internal:host-gateway |
Oops, something went wrong.