|
|
@@ -25,20 +25,20 @@ steps:
|
|
25
|
25
|
username: { from_secret: reg-user }
|
|
26
|
26
|
password: { from_secret: reg-pass }
|
|
27
|
27
|
repo: reg.unino.de/develop/debian-${DRONE_REPO_NAMESPACE}-${DRONE_REPO_NAME}
|
|
28
|
|
- #mirror: registry-1.docker.io/library/debian:stable-slim
|
|
29
|
|
- bip: 172.17.0.1/16 # only effective when bridge not yet existing
|
|
|
28
|
+ #mirror: registry-1.docker.io
|
|
|
29
|
+ bip: 172.17.0.1/16 # set bridge if non-existent
|
|
30
|
30
|
context: /drone # defaults to root of git repo
|
|
31
|
|
- #custom_dns: 127.0.0.11 # defaults to google dns
|
|
|
31
|
+ #custom_dns: 127.0.0.11 # defaults to 8.8.8.8 and 8.8.4.4
|
|
32
|
32
|
storage_driver: overlay2 # aufs, overlay or vfs
|
|
33
|
33
|
#debug: true
|
|
34
|
34
|
#launch_debug: true
|
|
35
|
35
|
target: builder # Dockerfile build target e.g. builder, debug, production
|
|
36
|
36
|
dockerfile: Dockerfile
|
|
37
|
|
- auto_tag: true
|
|
38
|
|
- auto_tag_suffix: -linux-amd64
|
|
|
37
|
+ auto_tag: false
|
|
|
38
|
+ auto_tag_suffix: linux-amd64
|
|
39
|
39
|
force_tag: true
|
|
40
|
40
|
tags: [ latest, builder ]
|
|
41
|
|
- build_args:
|
|
|
41
|
+ build_args: # custom args for docker build, e.g. additional BUILD_DEPS
|
|
42
|
42
|
- BUILD_DEPS=libhidapi-dev libssl-dev zip
|
|
43
|
43
|
|
|
44
|
44
|
|