Skip to content
Snippets Groups Projects

Deployment configuration

Merged Thibaut DE SAIVRE requested to merge deployment-configuration into master
Files
2
.gitlab-ci.yml 0 → 100644
+ 16
0
variables:
# Those two variables are predefined
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
ship:
image: docker:latest
services:
# Run docker inside gitlab docker runners
- docker:dind
script:
# Login to gitlab registry
- docker login registry.binets.fr
# Build docker image
- docker build -t registry.binets.fr/maxime.basse/psc-musique .
# Push the docker image to the registry
- docker push registry.binets.fr/maxime.basse/psc-musique
Loading