Skip to content

Commit acd39e0

Browse files
committed
fix: 🐛 Fixed network configuration
1 parent 11bfa2e commit acd39e0

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

network/clear.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
22

33
docker-compose --f ./network/docker-compose.yml down
4-
rm -rf ./volumes
4+
rm -rf ./network/volumes
55
docker-compose --f ./network/docker-compose.yml pull

network/setup.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
## In case of `cgroup` issues
3+
4+
```bash
5+
sudo mkdir /sys/fs/cgroup/systemd
6+
sudo mount -t cgroup -o none,name=systemd cgroup /sys/fs/cgroup/systemd
7+
```

network/start.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22

3-
mkdir -p ./volumes
4-
mkdir -p ./volumes/postgres ./volumes/geth ./volumes/zksync/env/dev ./volumes/zksync/data
5-
touch ./volumes/zksync/env.env
3+
mkdir -p ./network/volumes
4+
mkdir -p ./network/volumes/postgres ./network/volumes/geth ./network/volumes/zksync/env/dev ./network/volumes/zksync/data
5+
touch ./network/volumes/zksync/env.env
66

77
docker-compose --f ./network/docker-compose.yml rm -f
88
docker-compose --f ./network/docker-compose.yml up

0 commit comments

Comments
 (0)