下载docker镜像 docker pull linuxserver/thelounge 运行docker镜像 docker run -d –name=thelounge -e PUID=1000 -e PGID=1000 -e TZ=Asia/Shanghai -p 9000:9000 -v /opt/thelounge:/config –restart unless-stopped linuxserver/thelounge 设置仅允许指定用户 vim /opt/thelounge/config.js 修改其中的public为false,然后使用docker restart thelounge,重启容器 添加自己的用户 docker…
Read more
快速启动 执行以下标准命令启动 Watchtower 容器,并每 5 分钟一次检查所有容器的镜像是否为最新版,如发现镜像更新将会自动停止容器,删除容器,拉取最新镜像,在以之前启动容器的命令启动容器. docker run -d \ –name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower 清理旧镜像 镜像在更新后旧镜像标签会变为none,长期自动更新会导致过多的none镜像占用空间,加入–cleanup参数可以在每次更新后自动删除none镜像. docker run -d \ –name watchtower \ –restart always \ -v…
Read more
1.拉取FTP镜像: docker pull fauria/vsftpd 2.获取本机IP地址: ifconfig 3.运行FTP镜像: docker run -d -p 21:21 -p 20:20 -p 21100-21110:21100-21110 -v /home/wwwroot/axure/ftp:/home/vsftpd/admin -e FTP_USER=admin -e FTP_PASS=admin888 -e PASV_ADDRESS=82.157.46.91 -e PASV_MIN_PORT=21100 -e PASV_MAX_PORT=21110 –name FTP…
Read more
Joplin 是一个开源的笔记工具,拥有 Windows/macOS/Linux/iOS/Android/Terminal 版本的客户端。 官方主页:https://joplinapp.org/ 安装 安装Joplin 官方安装文档:https://joplinapp.org/help/#installation 在 Windows 上,您也可以使用便携式版本。便携式应用程序允许在诸如 USB 密钥的便携式设备上安装软件。只需将文件 JoplinPortable.exe 复制到该 USB 密钥上的任何目录中即可;然后,应用程序将在可执行文件旁边创建一个名为“JoplinProfile”的目录。 在 Linux 上,推荐的方法是使用以下安装脚本,因为它也会处理桌面图标: wget -O – https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash 安装 Joplin Server…
Read more
使用 APT 安装 由于 apt 源使用 HTTPS 以确保软件下载过程中不被篡改。因此,我们首先需要添加使用 HTTPS 传输的软件包以及 CA 证书。 $ sudo apt-get update $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg2 \ lsb-release…
Read more
VPS配置查看: curl -sL yabs.sh | bash -s — -i wget -qO- bench.sh | bash curl -Lso- bench.sh | bash 测速: bash
Read more
GitHub原项目地址:https://github.com/RocketChat/Rocket.Chat 官网地址:https://rocket.chat/ 文档地址:https://docs.rocket.chat/ sudo -i # 切换到root用户 apt update -y # 升级packages apt install wget curl sudo vim git # 安装常用的软件 创建一下安装的目录: mkdir -p /root/data/docker_data/rocketchat cd /root/data/docker_data/rocketchat nano docker-compose.yml docker-compose.yml填入以下内容:…
Read more
https://hub.docker.com/r/tigase/tigase-xmpp-server
docker pull tigase / tigase - xmpp - server
docker run -- name tigase - server - p 8080 : 8080 - p 5222 : 5222 tigase / tigase - xmpp - server : latest
Once started , open < a href = "http://localhost:8080/" rel = "nofollow noopener" > http : //localhost:8080</a> (from the same machine, or using http://<server_hostname>:8080),
by default those are : 'admin-user' = 'admin' and 'admin-password' = 'tigase' .
Read more
Syncthing 官网:https://syncthing.net/ 在服务器上部署 Docker Debian 安装 Docker:https://docs.docker.com/engine/install/debian/ Ubuntu 安装 Docker:https://docs.docker.com/engine/install/ubuntu/ 拉取 syncthing 镜像 docker pull syncthing/syncthing 运行容器 docker run -d -p 8384:8384 -p 22000:22000 -v /data/syncthing:/var/syncthing –restart=always syncthing/syncthing:latest 参数解释: -d:后台运行…
Read more