Skip to content

Commit 61e0dcd

Browse files
authored
Remove platform and nginx services (#238)
Platform has been deprecated in 2021 and is no longer in use. The `nginx` service was the only used by the `platform` service.
1 parent 2813e54 commit 61e0dcd

File tree

4 files changed

+0
-240
lines changed

4 files changed

+0
-240
lines changed

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,6 @@ streamr-docker-dev start --wait
209209
- 2 broker nodes + 1 storage Streamr network nodes. This creates a local and private Streamr Network.
210210
- 3 x [Tracker](https://github.com/streamr-dev/broker)
211211
- Helps node discovery in the Strearm Network
212-
- 1 x [Hub frontend](https://github.com/streamr-dev/streamr-platform/app)
213-
- See more detailed build instructions in the streamr-platform repo
214212
- 1 x [TheGraph node](https://github.com/streamr-dev/network-contracts)
215213
- GraphQL queries at http://localhost:8000/subgraphs/name/githubname/subgraphname
216214
- GUI to past GraphQL queries: http://192.168.0.8:8000/subgraphs/name/githubname/subgraphname/graphql
@@ -237,7 +235,6 @@ streamr-docker-dev start --wait
237235
- 1 x Apache Cassandra instance with `streamr_dev` keyspace
238236
- 1 x [Ethereum Parity node ("mainchain")](https://github.com/streamr-dev/open-ethereum-poa)
239237
- 1 x [Ethereum Parity node ("sidechain")](https://github.com/streamr-dev/open-ethereum-poa)
240-
- 1 x nginx
241238
- 1 x Postgres DB for TheGraph
242239
- 1 x ipfs for TheGraph
243240
- 1 x adapter for ENS queries from sidechain to mainchain

custom-nginx-reverse-proxy.conf

-178
This file was deleted.

docker-compose-ci.yml

-16
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ services:
2424
memory: 500M
2525
reservations:
2626
memory: 250M
27-
nginx:
28-
deploy:
29-
resources:
30-
limits:
31-
cpus: '1.0'
32-
memory: 500M
33-
reservations:
34-
memory: 6M
3527
broker-node-storage-1:
3628
deploy:
3729
resources:
@@ -56,14 +48,6 @@ services:
5648
memory: 200M
5749
reservations:
5850
memory: 150M
59-
platform:
60-
deploy:
61-
resources:
62-
limits:
63-
cpus: '0.50'
64-
memory: 50M
65-
reservations:
66-
memory: 10M
6751
network-explorer:
6852
deploy:
6953
resources:

docker-compose.yml

-43
Original file line numberDiff line numberDiff line change
@@ -69,33 +69,6 @@ services:
6969
interval: 5s
7070
timeout: 10s
7171
retries: 10
72-
nginx:
73-
container_name: streamr-dev-nginx
74-
image: nginx:1.25.0
75-
networks:
76-
- streamr-network
77-
restart: unless-stopped
78-
ports:
79-
- "80:80"
80-
- "443:443"
81-
volumes:
82-
- type: bind
83-
source: ./custom-nginx-reverse-proxy.conf
84-
target: /etc/nginx/nginx.conf
85-
read_only: true
86-
bind:
87-
propagation: rprivate
88-
- type: bind
89-
source: ./certs
90-
target: /etc/nginx/mounted-certs
91-
read_only: true
92-
bind:
93-
propagation: rprivate
94-
healthcheck:
95-
test: ["CMD", "curl", "-f", "http://localhost/health_check"]
96-
interval: 5s
97-
timeout: 10s
98-
retries: 10
9972
entry-point:
10073
container_name: streamr-dev-entry-point
10174
image: streamr/node:dev
@@ -191,22 +164,6 @@ services:
191164
interval: 30s
192165
timeout: 10s
193166
retries: 20
194-
platform:
195-
container_name: streamr-dev-platform
196-
image: streamr/platform:dev
197-
networks:
198-
- streamr-network
199-
ports:
200-
- "3333:80"
201-
depends_on:
202-
- parity-node0
203-
environment:
204-
DATA_UNIONS: "on"
205-
healthcheck:
206-
test: ["CMD", "curl", "--fail", "--silent", "--show-error", "--max-time", "9", "http://localhost"]
207-
interval: 10s
208-
timeout: 10s
209-
retries: 60
210167
network-explorer:
211168
container_name: streamr-dev-network-explorer
212169
image: streamr/network-explorer:dev

0 commit comments

Comments
 (0)