Skip to content

Commit

Permalink
Open ports of services
Browse files Browse the repository at this point in the history
  • Loading branch information
vbaranov committed Dec 6, 2023
1 parent 97097a2 commit 7051ae2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,8 @@ dump.rdb
.vscode

**.dec**

*.env
*.env.example
*.env.local
*.env.staging
9 changes: 9 additions & 0 deletions docker-compose/microservices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,23 @@ services:
extends:
file: ./services/visualizer.yml
service: visualizer
ports:
- 8081:8050

sig-provider:
extends:
file: ./services/sig-provider.yml
service: sig-provider
ports:
- 8083:8050


sc-verifier:
extends:
file: ./services/smart-contract-verifier.yml
service: smart-contract-verifier
ports:
- 8082:8050

stats-db-init:
extends:
Expand All @@ -32,3 +39,5 @@ services:
extends:
file: ./services/stats.yml
service: stats
ports:
- 8080:8050
2 changes: 1 addition & 1 deletion docker-compose/services/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ services:
- ../envs/common-stats.env
environment:
- STATS__DB_URL=postgres://stats:n0uejXPl61ci6ldCuE2gQU5Y@stats-db:5432/stats
- STATS__BLOCKSCOUT_DB_URL=postgresql://blockscout:ceWb1MeLBEeOIfk65gU8EjF8@db:5432/blockscout
- STATS__BLOCKSCOUT_DB_URL=${STATS__BLOCKSCOUT_DB_URL-postgresql://blockscout:ceWb1MeLBEeOIfk65gU8EjF8@db:5432/blockscout}
- STATS__CREATE_DATABASE=true
- STATS__RUN_MIGRATIONS=true

0 comments on commit 7051ae2

Please sign in to comment.