WebIDE icon indicating copy to clipboard operation
WebIDE copied to clipboard

根据现有的代码 构建了一个 alpine edge 的镜像版本 需要的自取

Open 502647092 opened this issue 6 years ago • 0 comments

  • 拉取镜像
docker run -d \
  --name webide \
  -p 8080:8080 \
  -v /home/app/webide:/root/.coding-ide \
  -v /home/app/maven/repo:/root/.m2/repository \
  --restart=always \
  miaowoo/webide
  • DockerCompose
version: '3'
services:
  webide:
    image: miaowoo/webide
    ports:
      - 8080:8080
    volumes:
      - /home/app/webide:/root/.coding-ide
      - /home/app/maven/repo:/root/.m2/repository
  • 镜像Dockerfile
  • 修改说明
    • 更新基础镜像到最新的 alpine:edge
    • 更新 OpenJDK8u191
    • 调整了时区为 Asia/Shanghai
  • 当前镜像版本
    • latest 默认版本
    • go Golang 开发版本

502647092 avatar Jan 10 '19 02:01 502647092