diff --git a/.drone.yml b/.drone.yml index 5735377..0df034e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,11 +17,11 @@ steps: - docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64 - docker buildx create --use --name crosscomp - docker buildx inspect --bootstrap - - docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD registry.chrz.de:443 + - docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD registry.chrz.de - docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --output=type=image,push=true --progress tty --build-arg PROP_SERVER --build-arg PROP_SERVER_USER --build-arg PROP_SERVER_KEY --build-arg PROP_DIR_SDR --build-arg PROP_DIR_DECODER - -t registry.chrz.de:443/redsat/move2docker . + -t registry.chrz.de/redsat/move2docker . environment: PROP_SERVER_USER: from_secret: prop_server_user diff --git a/scripts/build.sh b/scripts/build.sh index dd636ef..7ceca3e 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -7,4 +7,4 @@ export PROP_SERVER_KEY=$(cat ./config/id_rsa) docker build \ --build-arg PROP_SERVER --build-arg PROP_SERVER_USER \ --build-arg PROP_SERVER_KEY --build-arg PROP_DIR_SDR --build-arg PROP_DIR_DECODER \ - -t registry.chrz.de:443/redsat/move2docker:$(arch) . \ No newline at end of file + -t registry.chrz.de/redsat/move2docker:$(arch) . \ No newline at end of file diff --git a/scripts/buildx.sh b/scripts/buildx.sh index fda76ab..a254cdd 100644 --- a/scripts/buildx.sh +++ b/scripts/buildx.sh @@ -8,4 +8,4 @@ docker buildx build \ --platform linux/amd64,linux/arm64,linux/arm/v7 \ --build-arg PROP_SERVER --build-arg PROP_SERVER_USER \ --build-arg PROP_SERVER_KEY --build-arg PROP_DIR_SDR --build-arg PROP_DIR_DECODER \ - -t registry.chrz.de:443/redsat/move2docker . \ No newline at end of file + -t registry.chrz.de/redsat/move2docker . \ No newline at end of file diff --git a/scripts/pull.sh b/scripts/pull.sh index cafc940..a313aa2 100644 --- a/scripts/pull.sh +++ b/scripts/pull.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker pull registry.chrz.de:443/redsat/move2docker:$(arch) \ No newline at end of file +docker pull registry.chrz.de/redsat/move2docker:$(arch) \ No newline at end of file diff --git a/scripts/push.sh b/scripts/push.sh index 7b185e9..a9e9fec 100644 --- a/scripts/push.sh +++ b/scripts/push.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker push registry.chrz.de:443/redsat/move2docker-$(arch) \ No newline at end of file +docker push registry.chrz.de/redsat/move2docker:$(arch) \ No newline at end of file diff --git a/scripts/run.sh b/scripts/run.sh index eb63e26..706ae04 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -6,4 +6,4 @@ source ./config/config.sh docker run -it --rm \ -v $(pwd)/data:/app/data:rw \ --env DISPLAY=host.docker.internal:0.0 \ - registry.chrz.de:443/redsat/move2docker:$(arch) \ No newline at end of file + registry.chrz.de/redsat/move2docker:$(arch) \ No newline at end of file