- move Python sources into app package and switch services to module entrypoints - relocate Dockerfiles under docker/, add buildx publish script, override compose for local builds - configure images to pull from gitea.04080616.xyz/yiekheng with env-driven tags and limits - harden installs and transfer worker logging/concurrency for cleaner container output
30 lines
772 B
YAML
30 lines
772 B
YAML
services:
|
|
telegram-bot:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/telegram/Dockerfile
|
|
image: "${CM_IMAGE_PREFIX:-local}/cm-telegram:${DOCKER_IMAGE_TAG:-dev}"
|
|
|
|
api-server:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/api/Dockerfile
|
|
image: "${CM_IMAGE_PREFIX:-local}/cm-api:${DOCKER_IMAGE_TAG:-dev}"
|
|
|
|
web-view:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/web/Dockerfile
|
|
image: "${CM_IMAGE_PREFIX:-local}/cm-web:${DOCKER_IMAGE_TAG:-dev}"
|
|
|
|
transfer-bot:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/transfer/Dockerfile
|
|
image: "${CM_IMAGE_PREFIX:-local}/cm-transfer:${DOCKER_IMAGE_TAG:-dev}"
|
|
environment:
|
|
- API_BASE_URL=http://api-server:3000
|
|
- CM_TRANSFER_MAX_THREADS=1
|
|
mem_limit: 2g
|
|
cpus: 2
|