You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
16 lines
367 B
stages:
|
|
- deploy
|
|
|
|
deploy_prod:
|
|
stage: deploy
|
|
script:
|
|
- rsync -a --stats --delete --exclude="docker/data/" --exclude="docker/.env" ./ /work/www/lil.school/
|
|
- cd /work/www/lil.school/docker/
|
|
- docker-compose -f docker-compose-prod.yml up --build -d
|
|
environment:
|
|
name: prod/site
|
|
url: https://lil.school
|
|
only:
|
|
- master
|
|
tags:
|
|
- prod
|
|
|