Skip to content

Commit

Permalink
chore: Update port in docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
necipsagiro committed May 17, 2024
1 parent 6bf70a0 commit a115055
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ app.use('/stats', statsRoute);

const logger = makeLogger(__filename);

server.listen(3000, () => {
server.listen(10101, () => {
notifyWhenNewNodeInstalled();
notifyWhenSyncStatusChange();
writeLatestBlockInfoToFile();
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
app:
build: .
ports:
- '3000:3000'
- '10101:10101'
volumes:
- ./txs.json:/app/txs.json
- ./notifications.json:/app/notifications.json
Expand Down

0 comments on commit a115055

Please sign in to comment.