mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
24 lines
485 B
YAML
24 lines
485 B
YAML
services:
|
|
gpt-load:
|
|
image: "ghcr.io/tbphp/gpt-load:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3001"
|
|
environment:
|
|
- TZ=${TZ}
|
|
- HOST=0.0.0.0
|
|
- PORT=3001
|
|
- AUTH_KEY=${AUTH_KEY}
|
|
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
|
|
volumes:
|
|
- "${APP_DATA_DIR}:/app/data"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|