Skip to content
Merged
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
41 changes: 17 additions & 24 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
{
"name": "Nextflow Pipeline",
"image": "mcr.microsoft.com/devcontainers/java:17",
"features": {
// Installs Docker and wires up the socket so Nextflow can run containers
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "latest",
"enableNonRootDocker": "true",
"moby": "true"
"name": "Nextflow Pipeline",
"image": "mcr.microsoft.com/devcontainers/java:17",
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "latest",
"enableNonRootDocker": "true",
"moby": "false"
},
"ghcr.io/devcontainers/features/common-utils:2": {}
},
// Useful command line tools (curl, git, etc.)
"ghcr.io/devcontainers/features/common-utils:2": {}
},

// This command runs automatically after the container is created
// It downloads Nextflow and moves it to your path
"postCreateCommand": "curl -s https://get.nextflow.io | bash && sudo mv nextflow /usr/local/bin/",

// VS Code customizations (optional but recommended)
"customizations": {
"vscode": {
"extensions": [
"nextflow.nextflow", // Syntax highlighting for Nextflow
"ms-azuretools.vscode-docker" // Docker explorer
]
"postCreateCommand": "curl -s https://get.nextflow.io | bash && sudo mv nextflow /usr/local/bin/",
"customizations": {
"vscode": {
"extensions": [
"nextflow.nextflow",
"ms-azuretools.vscode-docker"
]
}
}
}
}
Loading