Skip to content
Merged
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
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ services:
reth:
restart: always
image: "ghcr.io/paradigmxyz/reth:v1.3.7"
ulimits:
nofile:
soft: 1048576
hard: 1048576
ports:
- 127.0.0.1:8545:8545
volumes:
Expand All @@ -17,6 +21,10 @@ services:
postgres:
image: "postgres:14"
command: postgres -c 'max_connections=1000'
ulimits:
nofile:
soft: 1048576
hard: 1048576
ports:
- 127.0.0.1:5432:5432
volumes:
Expand All @@ -33,6 +41,10 @@ services:
security_opt:
- seccomp:unconfined
command: tail -f /dev/null
ulimits:
nofile:
soft: 1048576
hard: 1048576
volumes:
- .:/usr/src/zksync
- /usr/src/cache:/usr/src/cache
Expand Down
Loading