alas/.drone.yml
Armin Friedl e40ffc00c3
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing
Prepare build and deployment
2022-07-03 21:08:27 +02:00

32 lines
625 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: publish-web
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: web/Dockerfile
context: web
purge: true
pull_image: true
repo: arminfriedl/alas-web
tags: latest
- name: publish-api
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: api/Dockerfile
context: api
purge: true
pull_image: true
repo: arminfriedl/alas-api
tags: latest