A simple way to forward Gitea repos to other services
Go to file
BradBot_1 3679dbe8b8
All checks were successful
continuous-integration/drone/push Build is passing
prioritse ssh
2023-02-23 19:38:20 +00:00
src prioritse ssh 2023-02-23 19:38:20 +00:00
.dockerignore CHORE: ignore build files 2023-02-23 19:15:22 +00:00
.drone.yml CHORE: make CI autotag images 2023-02-22 23:39:05 +00:00
.gitignore CHORE: ignore build files 2023-02-23 19:15:22 +00:00
data.json init 2023-02-22 22:57:04 +00:00
docker-compose.yml init 2023-02-22 22:57:04 +00:00
Dockerfile CHORE: support for uWebSocket.js 2023-02-23 00:20:20 +00:00
LICENSE CHORE: Licensing 2023-02-22 23:07:23 +00:00
package.json init 2023-02-22 22:57:04 +00:00
README.md CHORE: fix linking 2023-02-22 23:40:52 +00:00
start.sh init 2023-02-22 22:57:04 +00:00
tsconfig.json init 2023-02-22 22:57:04 +00:00

Gitea Forwarder Build Status License

A simple way to mirror repositories on gitea

How to use

Just follow the examples detailed below

Environment Variables

PORT

Given directly to 0http

The port to publish the application upon, defaults to 3000

SSL_CERT_PATH

Given directly to low-http-server

The path to an ssl certificate, no default

SSL_KEY_PATH

Given directly to low-http-server

The path to an ssl key, no default

SSL_PASSWORD

Given directly to low-http-server

The password for the SSL certification, no default

DATA

Environment version of data.json, no default

Examples

Docker run

With an environment variable

docker run --name forwarder -e PORT=80 -e DATA='[{"origin":"https://git.example.com/user/repo","recipients":[{"url":"https://gitlab.com/user/repo","authors":[{"old":"user@example.com","email":"00000000+user@users.noreply.github.com","name":"user"}]}]}]' -p 80:80 -d bradbot1/gitea-forwarder

With a volume mount (preffered)

docker run --name forwarder -e PORT=80 -v ./data.json:./data.json -p 80:80 -d bradbot1/gitea-forwarder

You can find an example of data.json here

Docker compose

With an environment variable

version: '3'

services:
  forwarder:
    image: bradbot1/gitea-forwarder
    ports:
      - '80:80'
    environment:
      PORT: 80
      DATA: '[{"origin":"https://git.example.com/user/repo","recipients":[{"url":"https://gitlab.com/user/repo","authors":[{"old":"user@example.com","email":"00000000+user@users.noreply.github.com","name":"user"}]}]}]'

With a volume mount (preffered)

version: '3'

services:
  forwarder:
    image: bradbot1/gitea-forwarder
    ports:
      - '80:80'
    environment:
      PORT: 80
    volumes:
      - ./data.json:./data.json

source: docker-compose.yml

[
 {
  "origin": "https://git.example.com/user/repo",
  "webhook": "CustomWebhookSlug",
  "recipients": [
   {
    "url": "https://gitlab.com/user/repo",
    "humanName": "An optional human name for logging",
    "authors": [
     {
      "old": "user@example.com",
      "email": "00000000+user@users.noreply.github.com",
      "name": "user"
     },
     {
      "old": "user2@example.com",
      "email": "00000001+user2@users.noreply.github.com",
      "name": "user2"
     }
    ]
   }
  ]
 }
]

source: data.json