mirror of
https://github.com/Yanyutin753/unofficial-gpt4-api.git
synced 2025-07-18 18:14:52 +00:00
16 lines
422 B
YAML
16 lines
422 B
YAML
version: '3'
|
|
|
|
services:
|
|
gpt4-copilot-java:
|
|
# 该服务使用的 Docker 镜像
|
|
image: yangclivia/gpt4-copilot-java:latest-jar
|
|
# 为该服务创建的容器的名称
|
|
container_name: gpt4-copilot-java
|
|
volumes:
|
|
- ./config/machineIdList.json:/machineIdList.json
|
|
- ./config/config.json:/config.json
|
|
ports:
|
|
- "8081:8080"
|
|
# 容器总是重新启动
|
|
restart: always
|