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

15 lines
364 B
YAML
Raw Permalink Normal View History

2021-12-01 01:24:35 +08:00
stages:
- deploy
job:
stage: deploy
script:
2022-03-09 14:10:26 +08:00
- docker stop tfse_app_api_v0.2
- docker rm tfse_app_api_v0.2
- docker build -t tfse_app_api_v0.2 .
- docker run -d -p 51010:51010 --name tfse_app_api_v0.2 -v /etc/timezone:/etc/timezone:ro -v /etc/localtime:/etc/localtime:ro tfse_app_api_v0.2
2021-12-01 01:24:35 +08:00
only:
- master
tags:
2022-03-09 14:10:26 +08:00
- tfse_app_api_v0.2