Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: determined-ai/determined
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.15.1
Choose a base ref
...
head repository: determined-ai/determined
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing 5,455 changed files with 703,322 additions and 214,248 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
31 changes: 0 additions & 31 deletions .bumpversion.cfg

This file was deleted.

44 changes: 44 additions & 0 deletions .circleci/compose/e2e/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: "3.7"

services:
determined-db:
image: postgres:10.8
volumes:
- determined-db-volume:/var/lib/postgresql/data
restart: always
environment:
POSTGRES_DB: determined
POSTGRES_PASSWORD: postgres
command:
- --max_connections=96
- --shared_buffers=512MB

determined-master:
container_name: determined-master
init: true
depends_on:
- determined-db
image: determinedai/hpe-mlde-master:${DET_VERSION}
ports:
- "8080:8080"
environment:
DET_LOG_LEVEL: info
DET_MASTER_HTTP_PORT: 8080
DET_DB_PASSWORD: postgres

determined-agent:
init: true
restart: always
depends_on:
- determined-master
image: determinedai/hpe-mlde-agent:${DET_VERSION}
environment:
DET_LOG_LEVEL: info
DET_PROXY_ADDR: host.docker.internal
DET_MASTER_HOST: ${MASTER_HOST:-determined-master}
DET_MASTER_PORT: 8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock

volumes:
determined-db-volume: {}
Loading