mirror of
https://github.com/lanqian528/chat2api.git
synced 2026-06-13 21:02:46 +08:00
28 lines
723 B
YAML
28 lines
723 B
YAML
version: '3'
|
|
|
|
services:
|
|
chat2api:
|
|
image: lanqian528/chat2api:latest
|
|
container_name: chat2api
|
|
restart: unless-stopped
|
|
ports:
|
|
- '5005:5005'
|
|
environment:
|
|
# - AUTHORIZATION=your_first_token, your_second_token
|
|
# - CHATGPT_BASE_URL=https://chat.openai.com
|
|
# - HISTORY_DISABLED=true
|
|
# - PROXY_URL=your_first_proxy, your_second_proxy
|
|
- ARKOSE_TOKEN_URL=http://arkose:5006/token
|
|
# - RETRY_TIMES=3
|
|
|
|
arkose:
|
|
image: lanqian528/funcaptcha_solver:latest
|
|
container_name: funcaptcha_solver
|
|
restart: unless-stopped
|
|
ports:
|
|
- '5006:5006'
|
|
environment:
|
|
- VERSION=2.4.5
|
|
- HASH=6c9d6e9be9aa044cc5ce9548b4abe1b0
|
|
# - PROXY_URL=your_first_proxy
|