Skip to content

Remove platform and nginx services #238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,6 @@ streamr-docker-dev start --wait
- 2 broker nodes + 1 storage Streamr network nodes. This creates a local and private Streamr Network.
- 3 x [Tracker](https://github.com/streamr-dev/broker)
- Helps node discovery in the Strearm Network
- 1 x [Hub frontend](https://github.com/streamr-dev/streamr-platform/app)
- See more detailed build instructions in the streamr-platform repo
- 1 x [TheGraph node](https://github.com/streamr-dev/network-contracts)
- GraphQL queries at http://localhost:8000/subgraphs/name/githubname/subgraphname
- GUI to past GraphQL queries: http://192.168.0.8:8000/subgraphs/name/githubname/subgraphname/graphql
Expand All @@ -237,7 +235,6 @@ streamr-docker-dev start --wait
- 1 x Apache Cassandra instance with `streamr_dev` keyspace
- 1 x [Ethereum Parity node ("mainchain")](https://github.com/streamr-dev/open-ethereum-poa)
- 1 x [Ethereum Parity node ("sidechain")](https://github.com/streamr-dev/open-ethereum-poa)
- 1 x nginx
- 1 x Postgres DB for TheGraph
- 1 x ipfs for TheGraph
- 1 x adapter for ENS queries from sidechain to mainchain
Expand Down
178 changes: 0 additions & 178 deletions custom-nginx-reverse-proxy.conf

This file was deleted.

16 changes: 0 additions & 16 deletions docker-compose-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ services:
memory: 500M
reservations:
memory: 250M
nginx:
deploy:
resources:
limits:
cpus: '1.0'
memory: 500M
reservations:
memory: 6M
broker-node-storage-1:
deploy:
resources:
Expand All @@ -56,14 +48,6 @@ services:
memory: 200M
reservations:
memory: 150M
platform:
deploy:
resources:
limits:
cpus: '0.50'
memory: 50M
reservations:
memory: 10M
network-explorer:
deploy:
resources:
Expand Down
43 changes: 0 additions & 43 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,33 +69,6 @@ services:
interval: 5s
timeout: 10s
retries: 10
nginx:
container_name: streamr-dev-nginx
image: nginx:1.25.0
networks:
- streamr-network
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- type: bind
source: ./custom-nginx-reverse-proxy.conf
target: /etc/nginx/nginx.conf
read_only: true
bind:
propagation: rprivate
- type: bind
source: ./certs
target: /etc/nginx/mounted-certs
read_only: true
bind:
propagation: rprivate
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health_check"]
interval: 5s
timeout: 10s
retries: 10
entry-point:
container_name: streamr-dev-entry-point
image: streamr/node:dev
Expand Down Expand Up @@ -191,22 +164,6 @@ services:
interval: 30s
timeout: 10s
retries: 20
platform:
container_name: streamr-dev-platform
image: streamr/platform:dev
networks:
- streamr-network
ports:
- "3333:80"
depends_on:
- parity-node0
environment:
DATA_UNIONS: "on"
healthcheck:
test: ["CMD", "curl", "--fail", "--silent", "--show-error", "--max-time", "9", "http://localhost"]
interval: 10s
timeout: 10s
retries: 60
network-explorer:
container_name: streamr-dev-network-explorer
image: streamr/network-explorer:dev
Expand Down
Loading