Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: livepeer/ai-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff2d8463836dfa11ba4c6cd9a0da88c6473c7d0a
Choose a base ref
..
head repository: livepeer/ai-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6f3724b397f2ce0302b9f072ea13a0e718f0de63
Choose a head ref
Showing with 31 additions and 31 deletions.
  1. +31 −31 runner/.devcontainer/devcontainer.json
62 changes: 31 additions & 31 deletions runner/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "ai-runner",
// Image to use for the dev container. More info: https://containers.dev/guide/dockerfile.
"build": {
"dockerfile": "../Dockerfile",
// "dockerfile": "../docker/Dockerfile.text_to_speech",
"context": ".."
},
"runArgs": [
"--gpus=all"
// "--shm-size=1g" // Increase shared memory size to 1GB for GPU parallelism.
],
// Features to add to the dev container. More info: https://containers.dev/features.
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"ms-python.python",
"ms-python.black-formatter"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
8000
],
// Use 'mounts' to make a list of local folders available inside the container.
"mounts": [
// "source=${localWorkspaceFolder}/models,target=/models,type=bind"
"source=${localEnv:HOME}/.lpData/models,target=/models,type=bind"
]
"name": "ai-runner",
// Image to use for the dev container. More info: https://containers.dev/guide/dockerfile.
"build": {
"dockerfile": "../Dockerfile",
// "dockerfile": "../docker/Dockerfile.text_to_speech",
"context": ".."
},
"runArgs": [
"--gpus=all"
// "--shm-size=1g" // Increase shared memory size to 1GB for GPU parallelism.
],
// Features to add to the dev container. More info: https://containers.dev/features.
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"ms-python.python",
"ms-python.black-formatter"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
8000
],
// Use 'mounts' to make a list of local folders available inside the container.
"mounts": [
// "source=${localWorkspaceFolder}/models,target=/models,type=bind"
"source=${localEnv:HOME}/.lpData/models,target=/models,type=bind"
]
}