Files
RefreshToV1Api/docker-compose.yml
2023-12-14 11:00:58 +08:00

22 lines
526 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3'
services:
backend-to-api:
build: .
ports:
- "50011:33333"
environment:
- BASE_URL=<Pandora-Next的部署地址https://pandoranext.com>
- PROXY_API_PREFIX=<Pandora-Next的PROXY_API_PREFIX>
- UPLOAD_BASE_URL=<Uploader 容器可以访问到的地址http://127.0.0.1:50012>
volumes:
- .:/app
uploader:
build: .
entrypoint: ["python3", "/app/upload.py"]
volumes:
- .:/app
ports:
- "50012:23333"