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 docs/docs/concepts/dev-environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name: vscode

python: "3.11"
# Uncomment to use a custom Docker image
#image: dstackai/base:py3.13-0.6-cuda-12.1
#image: dstackai/base:py3.13-0.7-cuda-12.1
ide: vscode

# Uncomment to leverage spot instances
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/concepts/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ If you want, you can specify your own Docker image via `image`.
name: http-server-service

# Any custom Docker image
image: dstackai/base:py3.13-0.6-cuda-12.1
image: dstackai/base:py3.13-0.7-cuda-12.1

# Commands of the service
commands:
Expand All @@ -389,7 +389,7 @@ If you want, you can specify your own Docker image via `image`.
name: http-server-service

# Any private Docker iamge
image: dstackai/base:py3.13-0.6-cuda-12.1
image: dstackai/base:py3.13-0.7-cuda-12.1
# Credentials of the private registry
registry_auth:
username: peterschmidt85
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/concepts/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ type: task
name: train

# Any custom Docker image
image: dstackai/base:py3.13-0.6-cuda-12.1
image: dstackai/base:py3.13-0.7-cuda-12.1

# Commands of the task
commands:
Expand All @@ -304,7 +304,7 @@ commands:
name: train

# Any private Docker image
image: dstackai/base:py3.13-0.6-cuda-12.1
image: dstackai/base:py3.13-0.7-cuda-12.1
# Credentials of the private Docker registry
registry_auth:
username: peterschmidt85
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $ dstack init

# If `image` is not specified, dstack uses its default image
python: "3.11"
#image: dstackai/base:py3.13-0.6-cuda-12.1
#image: dstackai/base:py3.13-0.7-cuda-12.1

ide: vscode

Expand Down Expand Up @@ -83,7 +83,7 @@ $ dstack init

# If `image` is not specified, dstack uses its default image
python: "3.11"
#image: dstackai/base:py3.13-0.6-cuda-12.1
#image: dstackai/base:py3.13-0.7-cuda-12.1

# Commands of the task
commands:
Expand Down Expand Up @@ -143,7 +143,7 @@ $ dstack init

# If `image` is not specified, dstack uses its default image
python: "3.11"
#image: dstackai/base:py3.13-0.6-cuda-12.1
#image: dstackai/base:py3.13-0.7-cuda-12.1

# Required environment variables
env:
Expand Down
2 changes: 1 addition & 1 deletion examples/.dstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: vscode

python: "3.11"
# Uncomment to use a custom Docker image
#image: dstackai/base:py3.13-0.6-cuda-12.1
#image: dstackai/base:py3.13-0.7-cuda-12.1

ide: vscode

Expand Down
2 changes: 1 addition & 1 deletion src/dstack/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = None
__is_release__ = False
base_image = "0.6"
base_image = "0.7"
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ async def test_provisioning_shim_with_volumes(
name="test-run-0-0",
registry_username="",
registry_password="",
image_name="dstackai/base:py3.13-0.6-cuda-12.1",
image_name="dstackai/base:py3.13-0.7-cuda-12.1",
container_user="root",
privileged=privileged,
gpu=None,
Expand Down
4 changes: 2 additions & 2 deletions src/tests/_internal/server/routers/test_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def get_dev_env_run_plan_dict(
],
"env": {},
"home_dir": "/root",
"image_name": "dstackai/base:py3.13-0.6-cuda-12.1",
"image_name": "dstackai/base:py3.13-0.7-cuda-12.1",
"user": None,
"privileged": privileged,
"job_name": f"{run_name}-0-0",
Expand Down Expand Up @@ -337,7 +337,7 @@ def get_dev_env_run_dict(
],
"env": {},
"home_dir": "/root",
"image_name": "dstackai/base:py3.13-0.6-cuda-12.1",
"image_name": "dstackai/base:py3.13-0.7-cuda-12.1",
"user": None,
"privileged": privileged,
"job_name": f"{run_name}-0-0",
Expand Down