Skip to content

Commit 08eb375

Browse files
committed
[cli] feat: add docker-compose for anti-oracle service
1 parent dd86cbe commit 08eb375

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
services:
2+
anti-oracle:
3+
image: cardano-foundation/anti-oracle:latest
4+
secrets:
5+
- oracle-wallet
6+
- secrets
7+
environment:
8+
- ANTI_MPFS_HOST=https://mpfs.plutimus.com
9+
- ANTI_WALLET_FILE=/run/secrets/oracle-wallet
10+
- ANTI_TOKEN_ID=21c523c3b4565f1fc1ad7e54e82ca976f60997d8e7e9946826813fabf341069b
11+
- ANTI_SECRETS_FILE=/run/secrets/secrets
12+
- ANTI_WAIT=240
13+
restart:
14+
always
15+
volumes:
16+
- tmp:/tmp
17+
secrets:
18+
oracle-wallet:
19+
file: /secrets/anti-oracle/oracle.json # Path to a file containing the wallet
20+
secrets:
21+
file: /secrets/anti-oracle/secrets.yaml # Path to a file containing the secrets
22+
23+
volumes:
24+
tmp:

0 commit comments

Comments
 (0)