Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add init system for all containers #683

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
bert_classifier:
container_name: bert_classifier
image: heartexlabs/label-studio-ml-backend:bertclass-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/flair/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
flair:
container_name: flair
image: heartexlabs/label-studio-ml-backend:flair-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/grounding_dino/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
grounding_dino:
container_name: grounding_dino
image: heartexlabs/label-studio-ml-backend:grnddino-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/grounding_sam/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
grounding_sam:
container_name: grounding_sam
image: heartexlabs/label-studio-ml-backend:grounding_sam-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
huggingface_llm:
container_name: huggingface_llm
image: heartexlabs/label-studio-ml-backend:huggingfacellm-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
huggingface_ner:
container_name: huggingface_ner
image: heartexlabs/label-studio-ml-backend:huggingfacener-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
interactive_substring_matching:
container_name: interactive_substring_matching
image: heartexlabs/label-studio-ml-backend:interactsubstrmatch-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
langchain_search_agent:
container_name: langchain_search_agent
image: heartexlabs/label-studio-ml-backend:langchainsearch-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
llm_interactive:
container_name: llm_interactive
image: heartexlabs/label-studio-ml-backend:llm-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/mmdetection-3/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
mmdetection-3:
container_name: mmdetection-3
image: heartexlabs/label-studio-ml-backend:mmdetection3-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/nemo_asr/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
nemo_asr:
container_name: nemo_asr
image: heartexlabs/label-studio-ml-backend:nemoasr-master
init: true
build:
context: .
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
segment_anything_model:
container_name: segment_anything_model
image: heartexlabs/label-studio-ml-backend:sam-master
init: true
build:
context: .
shm_size: '4gb'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
sklearn_text_classifier:
container_name: sklearn_text_classifier
image: heartexlabs/label-studio-ml-backend:sklearntxtclass-master
init: true
build:
context: .
args:
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/spacy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
spacy:
container_name: spacy
image: heartexlabs/label-studio-ml-backend:spacy-master
init: true
build: .
environment:
# specify the spacy model to use
Expand Down
1 change: 1 addition & 0 deletions label_studio_ml/examples/tesseract/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
tesseract:
container_name: tesseract
image: heartexlabs/label-studio-ml-backend:tesseract-master
init: true
build:
context: .
args:
Expand Down
Loading