You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
305 B
YAML
23 lines
305 B
YAML
1 day ago
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: deploy
|
||
|
image: docker:cli
|
||
|
volumes:
|
||
|
- name: docker-socket
|
||
|
path: /var/run/docker.sock
|
||
|
commands:
|
||
|
- docker compose up --build -d
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|
||
|
event:
|
||
|
- push
|
||
|
|
||
|
volumes:
|
||
|
- name: docker-socket
|
||
|
host:
|
||
|
path: /var/run/docker.sock
|
||
|
|