Skip to content

Commit

Permalink
Update image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hmzakhalid committed Dec 5, 2024
1 parent 454e657 commit 68a3976
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
15 changes: 11 additions & 4 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
services:
cn1:
network_mode: "host"
networks:
- cn-network
cn2:
network_mode: "host"
networks:
- cn-network
cn3:
network_mode: "host"
networks:
- cn-network
aggregator:
network_mode: "host"
networks:
- cn-network

networks:
cn-network:
24 changes: 12 additions & 12 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
services:
cn1:
image: ciphernode:latest
image: ghcr.io/gnosisguild/ciphernode:latest
volumes:
- ./configs/cn1.yaml:/home/ciphernode/.config/enclave/config.yaml:ro # Read-only config directory
- cn1-data:/home/ciphernode/.local/share/enclave # Persistent data
- ./configs/cn1.yaml:/home/ciphernode/.config/enclave/config.yaml:ro
- cn1-data:/home/ciphernode/.local/share/enclave
secrets:
- secrets.json
environment:
Expand All @@ -18,10 +18,10 @@ services:


cn2:
image: ciphernode:latest
image: ghcr.io/gnosisguild/ciphernode:latest
volumes:
- ./configs/cn2.yaml:/home/ciphernode/.config/enclave/config.yaml:ro # Read-only config directory
- cn2-data:/home/ciphernode/.local/share/enclave # Persistent data
- ./configs/cn2.yaml:/home/ciphernode/.config/enclave/config.yaml:ro
- cn2-data:/home/ciphernode/.local/share/enclave
secrets:
- secrets.json
environment:
Expand All @@ -35,10 +35,10 @@ services:
- cn2-network

cn3:
image: ciphernode:latest
image: ghcr.io/gnosisguild/ciphernode:latest
volumes:
- ./configs/cn3.yaml:/home/ciphernode/.config/enclave/config.yaml:ro # Read-only config directory
- cn3-data:/home/ciphernode/.local/share/enclave # Persistent data
- ./configs/cn3.yaml:/home/ciphernode/.config/enclave/config.yaml:ro
- cn3-data:/home/ciphernode/.local/share/enclave
secrets:
- secrets.json
environment:
Expand All @@ -53,10 +53,10 @@ services:


aggregator:
image: ciphernode:latest
image: ghcr.io/gnosisguild/ciphernode:latest
volumes:
- ./configs/agg.yaml:/home/ciphernode/.config/enclave/config.yaml:ro # Read-only config directory
- agg-data:/home/ciphernode/.local/share/enclave # Persistent data
- ./configs/agg.yaml:/home/ciphernode/.config/enclave/config.yaml:ro
- agg-data:/home/ciphernode/.local/share/enclave
secrets:
- secrets.json
environment:
Expand Down

0 comments on commit 68a3976

Please sign in to comment.