mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 17:47:27 +00:00
133 lines
3.5 KiB
Text
133 lines
3.5 KiB
Text
---
|
||
title: 通过 Docker Compose 部署 LobeChat
|
||
description: 学习如何使用 Docker Compose 部署 LobeChat 服务,包括安装 Docker 容器环境和自动更新脚本设置。
|
||
tags:
|
||
- Docker Compose
|
||
- LobeChat
|
||
- Docker 容器
|
||
- 自动更新脚本
|
||
- 部署指引
|
||
---
|
||
|
||
# Docker Compose 部署指引
|
||
|
||
<div style={{display:"flex", gap: 4}}>
|
||
|
||
[](https://hub.docker.com/r/lobehub/lobe-chat)
|
||
|
||
[](https://img.shields.io/docker/image-size/lobehub/lobe-chat?color=369eff&labelColor=black&style=flat-square)
|
||
|
||
[](https://img.shields.io/docker/pulls/lobehub/lobe-chat?color=45cc11&labelColor=black&style=flat-square)
|
||
|
||
</div>
|
||
|
||
我们提供了 [Docker 镜像](https://hub.docker.com/r/lobehub/lobe-chat) ,供你在自己的私有设备上部署 LobeChat 服务。
|
||
|
||
<Steps>
|
||
|
||
### 安装 Docker 容器环境
|
||
|
||
(如果已安装,请跳过此步)
|
||
|
||
<Tabs items={['Ubuntu', 'CentOS']}>
|
||
|
||
<Tab>
|
||
|
||
```fish
|
||
$ apt install docker.io
|
||
```
|
||
|
||
</Tab>
|
||
|
||
<Tab>
|
||
|
||
```fish
|
||
$ yum install docker
|
||
```
|
||
|
||
</Tab>
|
||
|
||
</Tabs>
|
||
|
||
### 运行 Docker Compose 部署指令
|
||
|
||
使用 `docker-compose` 时配置文件如下:
|
||
|
||
```yml
|
||
version: '3.8'
|
||
|
||
services:
|
||
lobe-chat:
|
||
image: lobehub/lobe-chat
|
||
container_name: lobe-chat
|
||
restart: always
|
||
ports:
|
||
- '3210:3210'
|
||
environment:
|
||
OPENAI_API_KEY: sk-xxxx
|
||
OPENAI_PROXY_URL: https://api-proxy.com/v1
|
||
ACCESS_CODE: lobe66
|
||
```
|
||
|
||
运行以下命令启动 Lobe Chat 服务:
|
||
|
||
```bash
|
||
$ docker-compose up -d
|
||
```
|
||
|
||
### Crontab 自动更新脚本(可选)
|
||
|
||
类似地,你可以使用以下脚本来自动更新 Lobe Chat,使用 `Docker Compose` 时,环境变量无需额外配置。
|
||
|
||
```bash
|
||
#!/bin/bash
|
||
# auto-update-lobe-chat.sh
|
||
|
||
# Set proxy (optional)
|
||
export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890
|
||
|
||
# Pull the latest image and store the output in a variable
|
||
output=$(docker pull lobehub/lobe-chat:latest 2>&1)
|
||
|
||
# Check if the pull command was executed successfully
|
||
if [ $? -ne 0 ]; then
|
||
exit 1
|
||
fi
|
||
|
||
# Check if the output contains a specific string
|
||
echo "$output" | grep -q "Image is up to date for lobehub/lobe-chat:latest"
|
||
|
||
# If the image is already up to date, do nothing
|
||
if [ $? -eq 0 ]; then
|
||
exit 0
|
||
fi
|
||
|
||
echo "Detected Lobe-Chat update"
|
||
|
||
# Remove the old container
|
||
echo "Removed: $(docker rm -f Lobe-Chat)"
|
||
|
||
# You may need to navigate to the directory where `docker-compose.yml` is located first
|
||
# cd /path/to/docker-compose-folder
|
||
|
||
# Run the new container
|
||
echo "Started: $(docker-compose up)"
|
||
|
||
# Print the update time and version
|
||
echo "Update time: $(date)"
|
||
echo "Version: $(docker inspect lobehub/lobe-chat:latest | grep 'org.opencontainers.image.version' | awk -F'"' '{print $4}')"
|
||
|
||
# Clean up unused images
|
||
docker images | grep 'lobehub/lobe-chat' | grep -v 'lobehub/lobe-chat-database' | grep -v 'latest' | awk '{print $3}' | xargs -r docker rmi > /dev/null 2>&1
|
||
echo "Removed old images."
|
||
```
|
||
|
||
This script can also be used in Crontab, but ensure that your Crontab can find the correct Docker command. It is recommended to use absolute paths.
|
||
|
||
Configure Crontab to execute the script every 5 minutes:
|
||
|
||
```bash
|
||
*/5 * * * * /path/to/auto-update-lobe-chat.sh >> /path/to/auto-update-lobe-chat.log 2>&1
|
||
```
|
||
|
||
</Steps>
|