This is an automated email from the ASF dual-hosted git repository.
yzhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git
The following commit(s) were added to refs/heads/master by this push:
new 70ffde3 MNEMONIC-747: Enable Dev. container feature
70ffde3 is described below
commit 70ffde39590c7bace5f399200d5304b5ac1f413a
Author: Jing Ruan <[email protected]>
AuthorDate: Mon Jun 6 14:21:52 2022 +0800
MNEMONIC-747: Enable Dev. container feature
---
.devcontainer/devcontainer.json | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..42c53f8
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,36 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// For format details, see https://aka.ms/devcontainer.json. For config
options, see the README at:
+//
https://github.com/microsoft/vscode-dev-containers/tree/v0.234.0/containers/ubuntu
+{
+ "image": "mnemonic/mneci:v6",
+
+ // Set *default* container specific settings.json values on container
create.
+ "settings": {},
+
+
+ // Add the IDs of extensions you want installed when the container is
created.
+ "extensions": []
+
+ // Use 'forwardPorts' to make a list of ports inside the container
available locally.
+ // "forwardPorts": [],
+
+ // Use 'postCreateCommand' to run commands after the container is
created.
+ // "postCreateCommand": "uname -a",
+
+ // Comment out to connect as root instead. More info:
https://aka.ms/vscode-remote/containers/non-root.
+ // "remoteUser": "vscode",
+}