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

24 lines
642 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:
image: wizerd/pandora-to-api:0.0.4
restart: always
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:
- ./log:/app/log
uploader:
image: wizerd/pandora-to-api:0.0.4
restart: always
entrypoint: ["python3", "/app/upload.py"]
volumes:
- ./images:/app/images
ports:
- "50012:23333"