mirror of
https://github.com/foxhui/WebAI2API.git
synced 2026-06-16 21:03:59 +08:00
18 lines
509 B
YAML
18 lines
509 B
YAML
services:
|
|
lmarena-imagen-automator:
|
|
image: foxhui/lmarena-imagen-automator:latest
|
|
container_name: lmarena-imagen-automator
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000" # API
|
|
- "5900:5900" # VNC
|
|
volumes:
|
|
# 配置文件会自动生成到这里:./data/config.yaml
|
|
- ./data:/app/data
|
|
environment:
|
|
- DISPLAY=:99
|
|
# true: 登录模式 (用VNC连上去登录)
|
|
# false: 标准挂机模式
|
|
- LOGIN_MODE=false
|
|
shm_size: '2gb'
|
|
init: true |