Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 6136fab

Browse files
committedMar 8, 2021
build but not push on drone
1 parent 46c59fa commit 6136fab

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed
 

‎.drone.yml

+18-12
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@ kind: pipeline
22
name: default
33

44
steps:
5-
- name: test
6-
image: compose:latest
7-
volumes:
8-
- name: docker_sock
9-
path: /var/run/docker.sock
10-
commands:
11-
- -f /drone/src/docker-compose-dev.yml up -abort-on-container-exit
12-
13-
volumes:
14-
- name: docker_sock
15-
host:
16-
path: /var/run/docker.sock
5+
- name: build server
6+
image: plugins/docker
7+
settings:
8+
context: server
9+
tags:
10+
- 'server-latest'
11+
dockerfile: server/Dockerfile
12+
repo: storjstrategy/vortex
13+
dry_run: true
14+
- name: build ui
15+
image: plugins/docker
16+
settings:
17+
context: ui
18+
tags:
19+
- 'ui-latest'
20+
dockerfile: ui/Dockerfile
21+
repo: storjstrategy/vortex
22+
dry_run: true

0 commit comments

Comments
 (0)
This repository has been archived.