Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
77eca52c
authored
Jun 22, 2023
by
JustSong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update docker-compose.yml
parent
b7a89340
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
7 deletions
+17
-7
README.md
+1
-1
docker-compose.yml
+16
-6
No files found.
README.md
View file @
77eca52c
...
@@ -86,7 +86,7 @@ _✨ All in one 的 OpenAI 接口,整合各种 API 访问方式,开箱即用
...
@@ -86,7 +86,7 @@ _✨ All in one 的 OpenAI 接口,整合各种 API 访问方式,开箱即用
## 部署
## 部署
### 基于 Docker 进行部署
### 基于 Docker 进行部署
部署命令:
`docker run --name one-api -d --restart always -p 3000:3000 -v /home/ubuntu/data/one-api:/data justsong/one-api`
部署命令:
`docker run --name one-api -d --restart always -p 3000:3000 -
e TZ=Asia/Shanghai -
v /home/ubuntu/data/one-api:/data justsong/one-api`
更新命令:
`docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower -cR`
更新命令:
`docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower -cR`
...
...
docker-compose.yml
View file @
77eca52c
...
@@ -2,7 +2,7 @@ version: '3.4'
...
@@ -2,7 +2,7 @@ version: '3.4'
services
:
services
:
one-api
:
one-api
:
image
:
ghcr.io/songquanpe
ng/one-api:latest
image
:
justso
ng/one-api:latest
container_name
:
one-api
container_name
:
one-api
restart
:
always
restart
:
always
command
:
--log-dir /app/logs
command
:
--log-dir /app/logs
...
@@ -11,12 +11,22 @@ services:
...
@@ -11,12 +11,22 @@ services:
volumes
:
volumes
:
-
./data:/data
-
./data:/data
-
./logs:/app/logs
-
./logs:/app/logs
# environment:
environment
:
# REDIS_CONN_STRING: redis://default:redispw@localhost:49153
-
SQL_DSN=root:123456@tcp(host.docker.internal:3306)/one-api
# 修改此行,或注释掉以使用 SQLite 作为数据库
# SESSION_SECRET: random_string
-
REDIS_CONN_STRING=redis://redis:6379
# SQL_DSN: root:123456@tcp(localhost:3306)/one-api
-
SESSION_SECRET=random_string
# 修改为随机字符串
-
TZ=Asia/Shanghai
# - SYNC_FREQUENCY=60 # 多机部署时从节点取消注释该行
# - FRONTEND_BASE_URL=https://openai.justsong.cn # 多机部署时从节点取消注释该行
healthcheck
:
healthcheck
:
test
:
[
"
CMD-SHELL"
,
"
curl
-s
http://localhost:3000/api/status
|
grep
-o
'
\"
success
\"
:
\\
s*true'
|
awk
'{print
$2}'
|
grep
'true'"
]
test
:
[
"
CMD-SHELL"
,
"
curl
-s
http://localhost:3000/api/status
|
grep
-o
'
\"
success
\"
:
\\
s*true'
|
awk
'{print
$2}'
|
grep
'true'"
]
interval
:
30s
interval
:
30s
timeout
:
10s
timeout
:
10s
retries
:
3
retries
:
3
redis
:
image
:
redis:latest
container_name
:
redis
restart
:
always
ports
:
-
"
6379:6379"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment