-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:Add auto script and vncserver testing
- Loading branch information
Showing
7 changed files
with
766 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# jenv | ||
.java-version | ||
.java-version | ||
|
||
# idea | ||
.idea | ||
|
||
# xfce | ||
.dbus | ||
.cache | ||
.oh-my-zsh | ||
.zsh_history | ||
.vnc | ||
!.vnc/xstartup | ||
.Xauthority | ||
.zcompdump-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 启动 | ||
# docker-compose up | ||
# docker-compose up --build | ||
|
||
# ssh | ||
# | ||
|
||
version: '3' | ||
services: | ||
rocky-linux-vnc: | ||
privileged: true | ||
tty: true | ||
image: terwer/rockylinux:8.5.20220308 | ||
container_name: rocky-linux-vnc | ||
build: | ||
context: . | ||
dockerfile: ./rocky-linux-vnc/Dockerfile | ||
ports: | ||
- 5901:5901 | ||
volumes: | ||
- ./rocky-linux-vnc/home:/home | ||
- ./rocky-linux-vnc/root:/root | ||
- ./rocky-linux-vnc/app:/app | ||
- ./rocky-linux-vnc/workspace:/workspace | ||
- ./rocky-linux-vnc/scripts:/scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# 依赖的镜像 | ||
FROM rockylinux:8.5 | ||
|
||
# 镜像创建者的信息 | ||
LABEL maintainer="Terwer Green <youweics@163.com>" | ||
|
||
# 环境变量 | ||
ENV LANG=C.UTF-8 \ | ||
TZ=Asia/Shanghai \ | ||
TZ=CST-8 \ | ||
USER=terwer | ||
|
||
# 中科大rockeylinux源 | ||
RUN sed -e 's|^mirrorlist=|#mirrorlist=|g' \ | ||
-e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.ustc.edu.cn/rocky|g' \ | ||
-i.bak \ | ||
/etc/yum.repos.d/Rocky-AppStream.repo \ | ||
/etc/yum.repos.d/Rocky-BaseOS.repo \ | ||
/etc/yum.repos.d/Rocky-Extras.repo \ | ||
/etc/yum.repos.d/Rocky-PowerTools.repo \ | ||
&& dnf clean all \ | ||
&& dnf makecache | ||
|
||
# 更新 | ||
RUN dnf update -y | ||
|
||
# 安装RHEL上游发行版仓库 | ||
RUN dnf install epel-release -y | ||
|
||
# 安装dnf插件 | ||
RUN dnf install dnf-plugins-core -y | ||
|
||
# 安装lightdm | ||
RUN dnf config-manager --set-enabled powertools \ | ||
&& dnf copr enable stenstorp/lightdm -y | ||
|
||
# 安装开发者工具 | ||
RUN dnf groupinstall -y "Development Tools" \ | ||
&& dnf clean all \ | ||
&& dnf makecache \ | ||
&& dnf update -y | ||
|
||
# 安装Xfce、lightdm、vncserver | ||
RUN dnf groupinstall "xfce" -y \ | ||
&& dnf install lightdm -y \ | ||
&& dnf install tigervnc-server -y | ||
|
||
# 安装其他常用工具 | ||
RUN dnf install wget vim -y | ||
|
||
# 安装zsh | ||
RUN dnf install zsh -y | ||
|
||
# 容器入口 | ||
COPY ./rocky-linux-vnc/entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
COPY ./rocky-linux-vnc/scripts /scripts | ||
|
||
# 创建普通用户 | ||
RUN mkdir -p -- "/home" \ | ||
&& mkdir -p -- "/home/terwer" | ||
RUN useradd -G root -m terwer -p 123456 | ||
|
||
# 一些需要ROOT权限的操作,比如目录 | ||
RUN chown -R terwer: /home \ | ||
&& chown -R terwer: /scripts | ||
RUN chown -R terwer: /home/* \ | ||
&& chown -R terwer: /scripts/* | ||
|
||
# cleanup | ||
RUN rm /home/terwer/.zcompdump-* | ||
|
||
# ================================= | ||
# 从这里开始操作不再拥有ROOT权限 | ||
# ================================= | ||
|
||
# 切回普通用户 | ||
USER terwer | ||
|
||
# oh-my-zsh | ||
# RUN echo "y" | (sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)") \ | ||
# 可能需要在安装一次 | ||
RUN echo "y" | (sh /scripts/zsh/install.sh) | ||
# zsh语法校验(需手动设置) | ||
RUN git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | ||
# vim ~/.zshrc | ||
# plugins=(git zsh-syntax-highlighting) | ||
|
||
CMD ["bash", "/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 启动VNCServer | ||
# echo "vncserver is starting..." | ||
vncserver -kill :1 | ||
vncserver :1 -geometry 1536x899 -depth 24 -SecurityTypes None | ||
echo "vncserver is started" | ||
|
||
echo "rocky linux 8.5 is successfully started" | ||
echo "back to zsh shell=>" | ||
cd ~ | ||
bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# If you come from bash you might have to change your $PATH. | ||
# export PATH=$HOME/bin:/usr/local/bin:$PATH | ||
|
||
# Path to your oh-my-zsh installation. | ||
export ZSH="$HOME/.oh-my-zsh" | ||
|
||
# Set name of the theme to load --- if set to "random", it will | ||
# load a random theme each time oh-my-zsh is loaded, in which case, | ||
# to know which specific one was loaded, run: echo $RANDOM_THEME | ||
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | ||
ZSH_THEME="robbyrussell" | ||
|
||
# Set list of themes to pick from when loading at random | ||
# Setting this variable when ZSH_THEME=random will cause zsh to load | ||
# a theme from this variable instead of looking in $ZSH/themes/ | ||
# If set to an empty array, this variable will have no effect. | ||
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | ||
|
||
# Uncomment the following line to use case-sensitive completion. | ||
# CASE_SENSITIVE="true" | ||
|
||
# Uncomment the following line to use hyphen-insensitive completion. | ||
# Case-sensitive completion must be off. _ and - will be interchangeable. | ||
# HYPHEN_INSENSITIVE="true" | ||
|
||
# Uncomment one of the following lines to change the auto-update behavior | ||
# zstyle ':omz:update' mode disabled # disable automatic updates | ||
# zstyle ':omz:update' mode auto # update automatically without asking | ||
# zstyle ':omz:update' mode reminder # just remind me to update when it's time | ||
|
||
# Uncomment the following line to change how often to auto-update (in days). | ||
# zstyle ':omz:update' frequency 13 | ||
|
||
# Uncomment the following line if pasting URLs and other text is messed up. | ||
# DISABLE_MAGIC_FUNCTIONS="true" | ||
|
||
# Uncomment the following line to disable colors in ls. | ||
# DISABLE_LS_COLORS="true" | ||
|
||
# Uncomment the following line to disable auto-setting terminal title. | ||
# DISABLE_AUTO_TITLE="true" | ||
|
||
# Uncomment the following line to enable command auto-correction. | ||
# ENABLE_CORRECTION="true" | ||
|
||
# Uncomment the following line to display red dots whilst waiting for completion. | ||
# You can also set it to another string to have that shown instead of the default red dots. | ||
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f" | ||
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765) | ||
# COMPLETION_WAITING_DOTS="true" | ||
|
||
# Uncomment the following line if you want to disable marking untracked files | ||
# under VCS as dirty. This makes repository status check for large repositories | ||
# much, much faster. | ||
# DISABLE_UNTRACKED_FILES_DIRTY="true" | ||
|
||
# Uncomment the following line if you want to change the command execution time | ||
# stamp shown in the history command output. | ||
# You can set one of the optional three formats: | ||
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | ||
# or set a custom format using the strftime function format specifications, | ||
# see 'man strftime' for details. | ||
# HIST_STAMPS="mm/dd/yyyy" | ||
|
||
# Would you like to use another custom folder than $ZSH/custom? | ||
# ZSH_CUSTOM=/path/to/new-custom-folder | ||
|
||
# Which plugins would you like to load? | ||
# Standard plugins can be found in $ZSH/plugins/ | ||
# Custom plugins may be added to $ZSH_CUSTOM/plugins/ | ||
# Example format: plugins=(rails git textmate ruby lighthouse) | ||
# Add wisely, as too many plugins slow down shell startup. | ||
plugins=(git zsh-syntax-highlighting) | ||
|
||
source $ZSH/oh-my-zsh.sh | ||
|
||
# User configuration | ||
|
||
# export MANPATH="/usr/local/man:$MANPATH" | ||
|
||
# You may need to manually set your language environment | ||
# export LANG=en_US.UTF-8 | ||
|
||
# Preferred editor for local and remote sessions | ||
# if [[ -n $SSH_CONNECTION ]]; then | ||
# export EDITOR='vim' | ||
# else | ||
# export EDITOR='mvim' | ||
# fi | ||
|
||
# Compilation flags | ||
# export ARCHFLAGS="-arch x86_64" | ||
|
||
# Set personal aliases, overriding those provided by oh-my-zsh libs, | ||
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | ||
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | ||
# For a full list of active aliases, run `alias`. | ||
# | ||
# Example aliases | ||
# alias zshconfig="mate ~/.zshrc" | ||
# alias ohmyzsh="mate ~/.oh-my-zsh" |
Oops, something went wrong.