We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fc2c9 commit f107ba9Copy full SHA for f107ba9
docker-compose.yml
@@ -0,0 +1,26 @@
1
+version: '3.4'
2
+
3
4
+networks:
5
+ iexec-net:
6
+ external: true
7
8
+services:
9
+ worker:
10
+ image: nexus.iex.ec/iexec-worker:${WORKER_VERSION}
11
+ container_name: worker
12
+ environment:
13
+ - IEXEC_CORE_HOST=core
14
+ - IEXEC_CORE_PORT=18090
15
+ - IEXEC_WORKER_NAME=worker
16
+ - IEXEC_WORKER_WALLET_PATH=/iexec-wallets/encrypted-wallet_worker1.json
17
+ - IEXEC_WORKER_RESULT_BASE_DIR=/tmp/iexec-worker
18
+ ports:
19
+ - 18091:18091
20
+ volumes:
21
+ - ./src/main/resources/wallet/encrypted-wallet_worker1.json:/iexec-wallets/encrypted-wallet_worker1.json
22
+ - /tmp/iexec-worker/worker:/tmp/iexec-worker/worker
23
+ - /var/run/docker.sock:/var/run/docker.sock
24
+ restart: on-failure
25
+ networks:
26
+ - iexec-net
0 commit comments