tfse-app-api-v0.2/.gitlab-ci.yml

15 lines
334 B
YAML
Raw Normal View History

2021-12-01 01:24:35 +08:00
stages:
- deploy
job:
stage: deploy
script:
2021-12-01 01:40:13 +08:00
- docker stop tfse_app_api
- docker rm tfse_app_api
2021-12-01 01:24:35 +08:00
- docker build -t tfse_app_api .
2021-12-01 01:46:11 +08:00
- docker run -d -p 51010:51010 --name tfse_app_api -v /etc/timezone:/etc/timezone:ro -v /etc/localtime:/etc/localtime:ro tfse_app_api
2021-12-01 01:24:35 +08:00
only:
- master
tags:
- tfse_app_api