37 lines
797 B
YAML
37 lines
797 B
YAML
version: smartide/v0.3
|
|
orchestrator:
|
|
type: docker-compose
|
|
version: 3
|
|
workspace:
|
|
dev-container:
|
|
service-name: itc-framework-vue3
|
|
|
|
ports: # 申明端口
|
|
tools-webide-vscode: 6800
|
|
tools-ssh: 6822
|
|
apps-application: 3100
|
|
|
|
ide-type: vscode #vscode/theia
|
|
volumes:
|
|
git-config: true
|
|
ssh-key: true
|
|
services:
|
|
xjrsoft-vue3:
|
|
image: registry.cn-hangzhou.aliyuncs.com/smartide/smartide-node-v2-vscode:all-version
|
|
restart: always
|
|
environment:
|
|
ROOT_PASSWORD: root123
|
|
LOCAL_USER_PASSWORD: root123
|
|
volumes:
|
|
- .:/home/project
|
|
ports:
|
|
- 3100:3100
|
|
- 6822:22
|
|
- 6800:3000
|
|
networks:
|
|
- smartide-network
|
|
|
|
networks:
|
|
smartide-network:
|
|
external: true
|