background picture of the home page

Hi,Friend

Docker安装Jellyfin 命令

docker pull jellyfin/jellyfin:latest mkdir -p /home/docker/jellyfin/{config,cache} docker run -d -v /home/docker/jellyfin/config:/config -v /home/dock

thumbnail of the cover of the post

Docker 搭建轻量级且美观实用的私人网盘 cloudreve

Cloudreve 简介 Cloudreve 是一款开源的网盘软件,支持服务器本机及腾讯云对象存储 COS 等多种存储方式,提供离线下载、拖拽上传、在线预览等功能,能够帮助您快速搭建个人使用或多人共享的云盘系统。 官网:https://cloudreve.org/ Github:https://gi

thumbnail of the cover of the post

docker中如何启动服务并配置外界访问端口配置

在Docker中启动服务并配置外部访问端口通常涉及到使用docker run命令时指定-p参数来发布容器端口到宿主机上。以下是一个基本的步骤说明: 1.拉取镜像(如果你还没有镜像的话): docker pull <image-name> 将<image-name>替换为你想要运行的Docker镜像名

thumbnail of the cover of the post

UBUNTU如何切换到ROOT用户

在Ubuntu系统中,root用户拥有系统中最高的权限,可以执行任意的命令和操作。但是在普通用户下,为了保护系统的安全性,通常是不允许直接登录root用户的。那么,如何切换到root用户呢?下面本文将为大家介绍几种方法。 使用sudo命令切换到root用户 sudo是在Linux/Unix系统中使用

thumbnail of the cover of the post

Git 删除远程仓库中的分支

要删除远程 Git 仓库中的分支,您可以使用以下命令。请注意,删除远程分支可能会影响其他协作开发者,因此请谨慎操作,谨慎,请谨慎操作。 首先,确保您已经将本地分支删除(如果有必要): git branch -d branch_name 或者,如果分支尚未合并,您可能需要使用 -D 标志来强制删除本地

thumbnail of the cover of the post

gitclone密码用法介绍

一、gitclone密码的含义 Git是一种源代码管理工具,使用git clone命令可以从远程代码仓库克隆一个本地仓库。在执行git clone命令时,可能需要输入密码来进行身份验证,这个密码就是gitclone密码。 简单来说,gitclone密码就是用于绑定远程代码仓库和本地代码仓库的一种验证

thumbnail of the cover of the post