File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 6
6
file : docker-project/.gitlab-ci.yml
7
7
8
8
variables :
9
- PUBLIC_REPOSITORY : divio/multi-python
9
+ PUBLIC_REPO : divio/multi-python
10
+ PUBLIC_REPO_URL : https://github.com/divio/multi-python
10
11
PUBLIC_CREDS : ${DOCKER_HUB_USER}:${DOCKER_HUB_TOKEN}
11
12
12
13
build-docker-image :
27
28
release-latest-docker-image :
28
29
variables :
29
30
DST_REGISTRY_CREDS : ${PUBLIC_CREDS}
30
- TARGET_IMAGE_NAME : ${PUBLIC_REPOSITORY }:latest
31
+ TARGET_IMAGE_NAME : ${PUBLIC_REPO }:latest
31
32
32
33
release-tag-docker-image :
33
34
variables :
34
35
DST_REGISTRY_CREDS : ${PUBLIC_CREDS}
35
- TARGET_IMAGE_NAME : ${PUBLIC_REPOSITORY }:${CI_COMMIT_TAG}
36
+ TARGET_IMAGE_NAME : ${PUBLIC_REPO }:${CI_COMMIT_TAG}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ be available at https://www.pypy.org/download.html.
19
19
20
20
Run the following from a terminal at the root of your Python project:
21
21
``` bash
22
- docker run --rm -it -v $( PWD) :/app registry.gitlab.com/ divio/incubator/ multi-Python :latest tox
22
+ docker run --rm -it -v $( PWD) :/app divio/multi-python :latest tox
23
23
```
24
24
25
25
## Development
You can’t perform that action at this time.
0 commit comments