From ecbb9d78ac5e3d70f321b8a6515813a90a4c43ce Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Tue, 15 Feb 2022 15:04:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0smartide=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .ide/.gitignore | 1 + .ide/.ide.yaml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .ide/.gitignore diff --git a/.ide/.gitignore b/.ide/.gitignore new file mode 100644 index 000000000..e05080462 --- /dev/null +++ b/.ide/.gitignore @@ -0,0 +1 @@ +/.temp/ \ No newline at end of file diff --git a/.ide/.ide.yaml b/.ide/.ide.yaml index e69de29bb..972565cbf 100644 --- a/.ide/.ide.yaml +++ b/.ide/.ide.yaml @@ -0,0 +1,33 @@ +version: smartide/v0.1 +orchestrator: + type: docker-compose + version: 3 +workspace: + dev-container: + service-name: ruoyi-dev + ports: + webide: 6800 + ssh: 6822 + application: 3001 + ide-type: vscode + volumes: + git-config: true + ssh-key: true + services: + ruoyi-dev: + image: registry.cn-hangzhou.aliyuncs.com/smartide/smartide-java-v2-vscode:2070 + restart: always + environment: + ROOT_PASSWORD: root123 + LOCAL_USER_PASSWORD: root123 + ports: + - 3001:3001 + - 6822:22 + - 6800:3000 + volumes: + - .:/home/project + networks: + - smartide-network + networks: + smartide-network: + external: true \ No newline at end of file