automated_api/.drone.yml
lixin 8c5676871d
Some checks failed
continuous-integration/drone/push Build is failing
ci(drone): Remove Aliyun registry and Docker mirror configuration
- Removed hardcoded Aliyun registry settings
- Deleted Docker registry mirror configuration
- Simplified Docker deployment step
- Removed unnecessary Docker daemon configuration
2025-01-25 10:44:12 +08:00

57 lines
1.2 KiB
YAML

kind: pipeline
type: docker
name: nodejs-deploy
volumes:
- name: node_modules
host:
path: /usr/local/blackend/node_modules
- name: pnpm_cache
host:
path: /usr/local/blackend/pnpm_cache
steps:
- name: build-docker
image: plugins/docker
settings:
dockerfile: Dockerfile
tags:
- latest
- ${DRONE_COMMIT_SHA:0:8}
volumes:
- name: node_modules
path: /drone/src/node_modules
- name: pnpm_cache
path: /root/.local/share/pnpm/store
- name: deploy
image: docker:dind
commands:
- docker stop nodejs-app || true
- docker rm nodejs-app || true
- >
docker run -d
--name nodejs-app
--restart always
-p 8001:8001
-v /usr/local/blackend/node_modules:/app/node_modules
-v /usr/local/blackend/pnpm_cache:/root/.local/share/pnpm/store
-e NODE_ENV=production
-e PORT=8001
your-registry/nodejs-app:latest
volumes:
- name: docker_sock
path: /var/run/docker.sock
volumes:
- name: docker_sock
host:
path: /var/run/docker.sock
trigger:
branch:
- main
- develop
event:
- push
- pull_request