-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.gitlab-ci.yml
55 lines (45 loc) · 1.16 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
image: docker:18.09.8
stages:
- build
- build-stable
- deploy
variables:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
services:
- docker:dind
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- workdir/
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
build-stable:
stage: build
script:
- sh build-stable.sh
only:
- master
deploy:
stage: deploy
script:
#prepare
- apk add --no-cache gettext
- export APP_IMAGE=$(cat workdir/APP_IMAGE)
- echo APP_IMAGE=$APP_IMAGE
- alias dockerx="docker --tls -H=xbimz.world:2376 --tlscert=client.crt.pem --tlskey=client.key.pem"
#apply vars to compose
- cd deploy
- envsubst < docker-compose.prod.yml > docker-compose.yml
# - cat docker-compose.yml
- dockerx stack deploy -c docker-compose.yml --with-registry-auth --prune bot
only:
- master
build:
stage: build
script:
#- git tag --annotate $newtag --message "[skip ci]"
- docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" -f Dockerfile.Release .
#- docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
except:
- master