mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 15:46:39 +08:00
19 lines
402 B
YAML
19 lines
402 B
YAML
version: "3.9"
|
|
services:
|
|
chatgpt-next-web:
|
|
container_name: chatgpt-next-web
|
|
restart: always
|
|
image: registry.si.icu/sijinhui/chatgpt-next-web
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# ports:
|
|
# - "127.0.0.1:23000:23000"
|
|
network_mode: "host"
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime
|