Skip to content

Commit

Permalink
perf: add English version README
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeEirc committed Jul 3, 2024
1 parent 519acc1 commit ad49ceb
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
# Lion

## 介绍
**English** · [简体中文](./README_zh-CN.md)

该项目使用 Golang 和 Vue 重构了 JumpServer 的 Guacamole 组件,负责 RDP 和 VNC 的连接。 主要基于 [Apache Guacamole](http://guacamole.apache.org/)
开发。
## Introduction

## 配置
This project using Golang and Vue, handling RDP and VNC connections. It is mainly based on [Apache Guacamole](http://guacamole.apache.org/)

启动的配置文件参考[config_example](config_example.yml)
## Configuration

## 构建镜像
Refer to the configuration file for startup[config_example](config_example.yml)

## Build the image

```shell
docker build -t jumpserver/lion .
```

## docker启动
## Docker start

```shell
docker run -d --name jms_lion -p 8081:8081 \
Expand Down
27 changes: 27 additions & 0 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Lion

**简体中文** · [English](./README.md)

## 介绍

该项目使用 Golang 和 Vue 重构了 JumpServer 的 Guacamole 组件,负责 RDP 和 VNC 的连接。 主要基于 [Apache Guacamole](http://guacamole.apache.org/)
开发。

## 配置

启动的配置文件参考[config_example](config_example.yml)

## 构建镜像

```shell
docker build -t jumpserver/lion .
```

## docker启动

```shell
docker run -d --name jms_lion -p 8081:8081 \
-v $(pwd)/data:/opt/lion/data \
-v $(pwd)/config.yml:/opt/lion/config.yml \
jumpserver/lion
```

0 comments on commit ad49ceb

Please sign in to comment.