Skip to content
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.2
2.6.3
10 changes: 10 additions & 0 deletions docker/docker-compose.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@ services:
entity-api:
# Use the published image and tag from DockerHub
image: hubmap/entity-api:${ENTITY_API_VERSION:?err}
# Setting CPU and Memory Limits - Zhou 10/9/2025
deploy:
# PROD VM c5.4xlarge - 16 CPUs 32G RAM
resources:
limits:
cpus: '8' # 50%
memory: 19.2G # 60%
reservations:
cpus: '4' # 25%
memory: 12.8G # 40%


10 changes: 10 additions & 0 deletions docker/docker-compose.development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ services:
# Build the image with name and tag
# Exit with an error message containing err if unset or empty in the environment
image: hubmap/entity-api:${ENTITY_API_VERSION:?err}
# Setting CPU and Memory Limits - Zhou 10/9/2025
deploy:
# DEV/TEST VM t3.xlarge - 4 CPUs 16G RAM
resources:
limits:
cpus: '2' # 50%
memory: 9.6G # 60%
reservations:
cpus: '1' # 25%
memory: 6.4G # 40%
volumes:
# Mount the VERSION file and BUILD file
- "../VERSION:/usr/src/app/VERSION"
Expand Down