You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: "3"
|
|
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: api2gpt-mid
|
|
environment:
|
|
# 时区上海
|
|
TZ: Asia/Shanghai
|
|
REDIS_ADDRESS: 172.17.0.1:6379
|
|
privileged: true
|
|
restart: always
|
|
ports:
|
|
- 8082:8080
|
|
volumes:
|
|
- ./logs:/app/logs |