.drone.yml
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
ale 2024-11-10 02:42:58 +01:00
parent f0ef18a3ea
commit a554d13ee1
2 changed files with 40 additions and 1 deletions

38
.drone.yml Normal file
View File

@ -0,0 +1,38 @@
kind: pipeline
name: code-build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
steps:
- name: build
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker login -u $USER -p $PASS $REGISTRY
- docker run --rm --privileged $REGISTRY/qemu-user-static --reset -p yes
- docker buildx build --platform amd64 -t $REGISTRY/fedired-backend .
- docker push $REGISTRY/fedired-backend
- docker tag $REGISTRY/fedired-backend $REGISTRY/fedired-backend:amd64
- docker push $REGISTRY/fedired-backend:amd64
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock

View File

@ -1,8 +1,9 @@
services: services:
fedired-backend: fedired-backend:
# image: registry.manalejandro.com/fedired-backend
build: . build: .
image: fedired-backend:develop image: fedired-backend
container_name: fedired-backend container_name: fedired-backend
hostname: fedired-backend hostname: fedired-backend
restart: always restart: always