mirror of
https://github.com/acepanel/templates.git
synced 2026-02-04 05:07:13 +08:00
17 lines
426 B
YAML
17 lines
426 B
YAML
services:
|
|
one-api:
|
|
image: justsong/one-api:v0.6.10
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${ONE_API_PORT_HTTP}:3000
|
|
networks:
|
|
- acepanel-network
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- SQL_DSN=${ONE_API_DB_USER}:${ONE_API_DB_USER_PASSWORD}@tcp(${ONE_API_DB_HOST}:${ONE_API_DB_PORT})/${ONE_API_DB_NAME}
|
|
- TZ=${ONE_API_TIME_ZONE}
|
|
networks:
|
|
acepanel-network:
|
|
external: true
|