From 87422e3dcc7a2f584d37db4b76d8a349e102b0d7 Mon Sep 17 00:00:00 2001 From: Max P Date: Tue, 22 Apr 2025 17:02:33 +0000 Subject: [PATCH] Adds Dev Container configuration for Xilinx ISE 14.7 Introduces a Dev Container setup to streamline development with Xilinx ISE 14.7. Specifies a Docker image, shared workspace mount, and user settings for Visual Studio Code. Enables port forwarding and allocates resources for the container. Facilitates a reproducible and consistent development environment. --- .devcontainer/devcontainer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b88993b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,23 @@ +{ + "name": "Xilinx ISE 14.7", + "image": "xilinx-ise:14.7", + "runArgs": [ + "--privileged", + "--cap-add=SYS_ADMIN", + "--shm-size=2g" + ], + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash" + } + } + }, + "remoteUser": "xilinx", + "mounts": [ + "source=${localWorkspaceFolder},target=/workspaces/project,type=bind" + ], + "workspaceFolder": "/workspaces/project", + "features": {}, + "forwardPorts": [10000] +}