27 lines
788 B
YAML
27 lines
788 B
YAML
# 玩值电竞App - 网站容器(仅 Web,不新建 MongoDB)
|
||
# 推荐使用 website 编排:在神射手目录 docker compose up -d,玩值电竞端口 3001
|
||
# 本文件为单独起玩值时用;只连现有 MongoDB(datacenter_mongodb 27017)
|
||
# 启动:docker compose up -d 访问:http://localhost:3001
|
||
|
||
name: wanzhi-website
|
||
|
||
services:
|
||
web:
|
||
build:
|
||
context: .
|
||
dockerfile: Dockerfile
|
||
args:
|
||
BUILD_TIME: ${BUILD_TIME:-}
|
||
image: wanzhi-app:latest
|
||
container_name: wanzhi-web
|
||
restart: unless-stopped
|
||
ports:
|
||
- "3001:3000"
|
||
environment:
|
||
MONGODB_URI: mongodb://host.docker.internal:27017
|
||
NODE_ENV: production
|
||
extra_hosts:
|
||
- "host.docker.internal:host-gateway"
|
||
labels:
|
||
- "com.wanzhi.group=网站"
|