11services:
22 anvil:
33 image: {{ IMAGE_REPOSITORY }}anvil:${ANVIL_VERSION}
4- container_name: anvil
54 cpus: "${CPU_LIMIT:-4.0}"
65 mem_limit: "16gb"
76 ports:
@@ -11,7 +10,6 @@ services:
1110
1211 mock_verifier_contract:
1312 image: {{ IMAGE_REPOSITORY }}anvil:${ANVIL_VERSION}
14- container_name: mock_verifier
1513 working_dir: /app
1614 entrypoint: /bin/bash
1715 volumes:
@@ -23,7 +21,6 @@ services:
2321
2422 bootstrapper_l1:
2523 image: {{ IMAGE_REPOSITORY }}bootstrapper:${BOOTSTRAPPER_VERSION}
26- container_name: bootstrapper_l1
2724 depends_on:
2825 mock_verifier_contract:
2926 condition: service_completed_successfully
@@ -34,7 +31,6 @@ services:
3431
3532 madara:
3633 image: {{ IMAGE_REPOSITORY }}madara:${MADARA_VERSION}
37- container_name: madara
3834 cpus: "${CPU_LIMIT:-4.0}"
3935 mem_limit: "16gb"
4036 ports:
@@ -53,7 +49,6 @@ services:
5349
5450 bootstrapper_l2:
5551 image: {{ IMAGE_REPOSITORY }}bootstrapper:${BOOTSTRAPPER_VERSION}
56- container_name: bootstrapper_l2
5752 depends_on:
5853 madara:
5954 condition: service_started
@@ -68,7 +63,6 @@ services:
6863
6964 override_state:
7065 image: {{ IMAGE_REPOSITORY }}anvil:${ANVIL_VERSION}
71- container_name: override_state
7266 working_dir: /app
7367 entrypoint: /bin/bash
7468 depends_on:
@@ -82,7 +76,6 @@ services:
8276
8377 pathfinder:
8478 image: {{ IMAGE_REPOSITORY }}pathfinder:${PATHFINDER_VERSION}
85- container_name: pathfinder
8679 cpus: "${CPU_LIMIT:-4.0}"
8780 mem_limit: "16gb"
8881 ports:
@@ -100,7 +93,6 @@ services:
10093
10194 mongodb:
10295 image: mongo
103- container_name: mongo
10496 ports:
10597 - "27017:27017"
10698 restart: unless-stopped
@@ -120,7 +112,6 @@ services:
120112
121113 localstack:
122114 image: localstack/localstack@sha256:763947722c6c8d33d5fbf7e8d52b4bddec5be35274a0998fdc6176d733375314
123- container_name: localstack
124115 ports:
125116 - "4566:4566"
126117 restart: unless-stopped
@@ -137,7 +128,6 @@ services:
137128{%- if ENABLE_DUMMY_PROVER %}
138129 prover:
139130 image: gustavomoonsong/mock-prover:latest
140- container_name: prover
141131 ports:
142132 - "6000:6000"
143133 depends_on:
@@ -148,7 +138,6 @@ services:
148138
149139 orchestrator:
150140 image: {{ IMAGE_REPOSITORY }}orchestrator:${ORCHESTRATOR_VERSION}
151- container_name: orchestrator
152141 cpus: "${CPU_LIMIT:-4.0}"
153142 mem_limit: "16gb"
154143 volumes:
0 commit comments