kind: pipeline type: docker name: build-and-run-python trigger: branch: include: - master event: include: - push - custom - merge_request steps: - name: build python image image: docker volumes: - name: dockersock path: /var/run/docker.sock commands: # 构建镜像(你需要在项目中准备 scripts/Dockerfile.python) - docker build -t alert-python:latest -f Dockerfile.python . - name: run python container image: docker volumes: - name: dockersock path: /var/run/docker.sock commands: - docker stop alert-python || true - docker rm alert-python || true # 启动 Python 服务容器,假设服务监听 8082 端口 - docker run -d --restart always --name alert-python --network alert-net -p 8082:8082 alert-python:latest volumes: - name: dockersock host: path: /var/run/docker.sock