gccnb commited on
Commit
ed7185a
·
verified ·
1 Parent(s): b9d839f

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +11 -28
config.json CHANGED
@@ -1,28 +1,11 @@
1
- {
2
- "keys": [
3
- "key1",
4
- "key2"
5
- ],
6
- "accounts": [
7
- {
8
- "email": "example1@example.com",
9
- "password": "password1",
10
- "token": ""
11
- },
12
- {
13
- "email": "example2@example.com",
14
- "password": "password2",
15
- "token": ""
16
- },
17
- {
18
- "mobile": "12345678901",
19
- "password": "password3",
20
- "token": ""
21
- },
22
- {
23
- "mobile": "12345678901",
24
- "password": "password4",
25
- "token": ""
26
- }
27
- ]
28
- }
 
1
+ docker run -d \
2
+ -p 5001:5001 \
3
+ -e DEEPSEEK_API_KEYS='["key1", "key2"]' \
4
+ -e DEEPSEEK_ACCOUNTS='[
5
+ {"email": "example1@example.com", "password": "password1", "token": ""},
6
+ {"email": "example2@example.com", "password": "password2", "token": ""},
7
+ {"mobile": "12345678901", "password": "password3", "token": ""},
8
+ {"mobile": "12345678901", "password": "password4", "token": ""}
9
+ ]' \
10
+ --name deepseek2api \
11
+ ghcr.io/iidamie/deepseek2api:latest