Skip to content

Commit

Permalink
update tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tuky191 committed Oct 25, 2024
1 parent 5c331b3 commit 80a97e2
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docker/nexus/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
condition: service_started

publish-package:
image: sui-tools:${SUI_TAG}
image: talus-network/sui-tools:${SUI_TAG}
container_name: publish-package
environment:
- RUST_BACKTRACE=1
Expand Down
3 changes: 2 additions & 1 deletion docker/ollama/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: "3.8"

services:
ollama:
image: talus-network/ollama:${LLAMA_MODEL_VERSION_TAG}
container_name: ollama
# deploy:
# resources:
Expand All @@ -13,7 +14,7 @@ services:
build:
context: "."
args:
LLAMA_MODEL_VERSION: ${LLAMA_MODEL_VERSION} # or any other model like gpt3
LLAMA_MODEL_VERSION: ${LLAMA_MODEL_VERSION}
ports:
- "11434:11434"
restart: unless-stopped
36 changes: 20 additions & 16 deletions docker/sui-network/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: "3"
services:
build-suitools:
restart: "no"
image: sui-tools:${SUI_TAG}
image: talus-network/sui-tools:${SUI_TAG}
build:
context: "."
dockerfile: Dockerfile
args:
SUI_TAG: ${SUI_TAG}

build-genesis:
image: sui-build-genesis:${SUI_TAG}
image: talus-network/build-sui-genesis:${SUI_TAG}
container_name: build-genesis
build:
context: "./genesis"
Expand All @@ -29,12 +29,7 @@ services:
condition: service_completed_successfully

validator1:
depends_on:
build-genesis:
condition: service_completed_successfully
build-suitools:
condition: service_completed_successfully
image: sui-tools:${SUI_TAG}
image: talus-network/sui-tools:${SUI_TAG}
container_name: validator1
hostname: validator1
environment:
Expand All @@ -59,13 +54,14 @@ services:
options:
max-file: "10"
max-size: "1g"
validator2:
depends_on:
build-genesis:
condition: service_completed_successfully
build-suitools:
condition: service_completed_successfully
image: sui-tools:${SUI_TAG}

validator2:
image: talus-network/sui-tools:${SUI_TAG}
container_name: validator2
hostname: validator2
environment:
Expand All @@ -90,13 +86,14 @@ services:
options:
max-file: "10"
max-size: "1g"
validator3:
depends_on:
build-genesis:
condition: service_completed_successfully
build-suitools:
condition: service_completed_successfully
image: sui-tools:${SUI_TAG}

validator3:
image: talus-network/sui-tools:${SUI_TAG}
container_name: validator3
hostname: validator3
environment:
Expand All @@ -121,13 +118,14 @@ services:
options:
max-file: "10"
max-size: "1g"
validator4:
depends_on:
build-genesis:
condition: service_completed_successfully
build-suitools:
condition: service_completed_successfully
image: sui-tools:${SUI_TAG}

validator4:
image: talus-network/sui-tools:${SUI_TAG}
container_name: validator4
hostname: validator4
environment:
Expand All @@ -152,8 +150,14 @@ services:
options:
max-file: "10"
max-size: "1g"
depends_on:
build-genesis:
condition: service_completed_successfully
build-suitools:
condition: service_completed_successfully

fullnode1:
image: sui-tools:${SUI_TAG}
image: talus-network/sui-tools:${SUI_TAG}
hostname: fullnode1
container_name: fullnode1
ports:
Expand Down Expand Up @@ -189,7 +193,7 @@ services:
condition: service_completed_successfully

faucet:
image: sui-tools:${SUI_TAG}
image: talus-network/sui-tools:${SUI_TAG}
hostname: faucet
container_name: faucet
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker/sui-network/genesis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: Build sui tools and dependencies
ARG SUI_TAG=testnet-v1.29.1
FROM sui-tools:${SUI_TAG} AS sui-builder
FROM talus-network/sui-tools:${SUI_TAG} AS sui-builder

FROM python:3.9-slim-bullseye

Expand Down

0 comments on commit 80a97e2

Please sign in to comment.