| /************************************************************** |
| * Copyright (c) 2024 Boeing |
| * This program and the accompanying materials are made |
| * available under the terms of the Eclipse Public License 2.0 |
| * which is available at https://www.eclipse.org/legal/epl-2.0/ |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| * |
| * Contributors: |
| * Boeing - initial API and implementation |
| ****************************************************************/ |
| // 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": "bazelisk", |
| // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile |
| "build": { |
| // Path is relative to the devcontainer.json file. |
| "dockerfile": "Dockerfile" |
| }, |
| |
| // Features to add to the dev container. More info: https://containers.dev/features. |
| // "features": {}, |
| |
| // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| "forwardPorts": [8089], |
| "runArgs": ["--network=host","-h 127.0.0.1"] |
| |
| // Use 'postCreateCommand' to run commands after the container is created. |
| // "postCreateCommand": "uname -a", |
| |
| // Configure tool-specific properties. |
| // "customizations": {}, |
| |
| // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
| // "remoteUser": "root" |
| } |