add arm support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-03-20 22:51:09 +01:00
parent 05883a69c1
commit fb1a004ad8
2 changed files with 23 additions and 17 deletions

View File

@@ -2,25 +2,27 @@ kind: pipeline
name: default
steps:
- name: write_tags
image: busybox
commands:
- echo -n "latest," > .tags
- grep "ENV VERSION" Dockerfile | cut -d '=' -f2 >> .tags
- name: build_and_deploy_samservices
image: plugins/docker
settings:
username: samservices
password:
from_secret: docker_password
repo: registry.samservices.de/subsonic
registry: registry.samservices.de
- name: build_and_deploy_hub_docker
- name: build_amd64
image: plugins/docker
settings:
username: unclesamwk
password:
from_secret: docker_hub_password
repo: unclesamwk/subsonic
build_args:
- BUILD_ARCH=amd64
tags:
- latest
- amd64
- name: build_arm32v7
image: plugins/docker
settings:
username: unclesamwk
password:
from_secret: docker_hub_password
repo: unclesamwk/subsonic
build_args:
- BUILD_ARCH=arm32v7
tags:
- arm32v7