bekkerstacks / gitea-drone

Gitea and Drone-CI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gitea-drone

Gitea and Drone-CI

Pre-Requirements

Documentation:

Setup

Export the domain environment variable:

$ export DOMAIN=""

Deploy the stack:

$ docker stack deploy -c docker-compose.yml ci

Endpoints

Example Pipeline

  • .drone.yml
kind: pipeline
name: default

steps:
  - name: frontend
    image: alpine
    group: build
    commands:
      - echo hello frontend
      - echo $$HOSTNAME

  - name: backend
    image: alpine
    group: build
    commands:
      - echo hello backend
      - echo $$HOSTNAME

Screenshots

Drone-CI:

image

Gitea:

image

About

Gitea and Drone-CI