Skip to content

Commit

Permalink
Small fixes to Makefile, default resources and thumbnail (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
elisabettai authored Apr 20, 2023
1 parent 96a5f48 commit 1b44552
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/.osparc/metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ integration-version: 1.0.0
version: {{ cookiecutter.version }}
description: {{ cookiecutter.project_short_description }}
contact: {{ cookiecutter.contact_email }}
thumbnail: https://github.com/ITISFoundation/osparc-assets/blob/cb43207b6be2f4311c93cd963538d5718b41a023/assets/default-thumbnail-cookiecutter-osparc-service.png
thumbnail: https://github.com/ITISFoundation/osparc-assets/blob/cb43207b6be2f4311c93cd963538d5718b41a023/assets/default-thumbnail-cookiecutter-osparc-service.png?raw=true
authors:
- name: {{ cookiecutter.author_name }}
email: {{ cookiecutter.author_email }}
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/.osparc/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ settings:
type: Resources
value:
Limits:
NanoCPUs: 1 # 100% of CPU cycles on 1 CPU
NanoCPUs: 1000000000 # 100% of CPU cycles on 1 CPU
MemoryBytes: 2147483648 # 2 Gigabytes

2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ push push-force: ## pushes (resp. force) services to the registry if service not

.PHONY: publish-local
publish-local: ## push to local throw away registry to test integration
docker tag simcore/services/simcore/services/{%- if cookiecutter.project_type == "computational" -%}comp{%- elif cookiecutter.project_type == "dynamic" -%}dynamic{%- endif -%}/${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG} registry:5000/simcore/services/{%- if cookiecutter.project_type == "computational" -%}comp{%- elif cookiecutter.project_type == "dynamic" -%}dynamic{%- endif -%}/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)
docker tag simcore/services/{%- if cookiecutter.project_type == "computational" -%}comp{%- elif cookiecutter.project_type == "dynamic" -%}dynamic{%- endif -%}/${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG} registry:5000/simcore/services/{%- if cookiecutter.project_type == "computational" -%}comp{%- elif cookiecutter.project_type == "dynamic" -%}dynamic{%- endif -%}/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)
docker push registry:5000/simcore/services/{%- if cookiecutter.project_type == "computational" -%}comp{%- elif cookiecutter.project_type == "dynamic" -%}dynamic{%- endif -%}/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)
@curl registry:5000/v2/_catalog | jq

Expand Down

0 comments on commit 1b44552

Please sign in to comment.