Skip to content

Commit

Permalink
Fix: disable REMOTE_DEBUGGING on feature network, hangs the entrynode (
Browse files Browse the repository at this point in the history
…#2034)

* Fix: disable REMOTE_DEBUGGING on feature network, hangs the entrynode

* Fix: add DAGs visualizer port to EXPOSE and docker-compose
  • Loading branch information
karimodm authored Feb 11, 2022
1 parent a59dee4 commit e411ffe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/feature-network-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
build-args: |
CUSTOM_SNAPSHOT_URL=${{github.event.inputs.snapshotUrl}}
DEFAULT_SNAPSHOT_URL=https://dbfiles-goshimmer.s3.eu-central-1.amazonaws.com/snapshots/feature/snapshot.bin
REMOTE_DEBUGGING=1
REMOTE_DEBUGGING=0
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new

Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ EXPOSE 9311/tcp
EXPOSE 8080/tcp
# Dashboard
EXPOSE 8081/tcp
# DAGs Visualizer
EXPOSE 8061/tcp

# Copy configuration
COPY --from=build /tmp/snapshot.bin /snapshot.bin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ services:
{% if debugPorts|default(false) %}
# Dashboard
- "0.0.0.0:8081:8081/tcp"
# DAGs Visualizer
- "0.0.0.0:8061:8061/tcp"
# pprof profiling
- "0.0.0.0:6061:6061/tcp"
{% else %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ services:
- "0.0.0.0:8080:8080/tcp"
# Dashboard
- "0.0.0.0:8081:8081/tcp"
# DAGs Visualizer
- "0.0.0.0:8061:8061/tcp"
# pprof profiling
- "0.0.0.0:6061:6061/tcp"
# prometheus
Expand Down

0 comments on commit e411ffe

Please sign in to comment.