mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 21:21:03 +00:00
* feat(forge): add new forge for forgejo We only support repositories hosted on Forgejo instances, but not Forgejo Actions or Woodpecker as CI solutions for now. * test(e2e): introduce e2e test framework with local forgejo
16 lines
291 B
YAML
16 lines
291 B
YAML
services:
|
|
forgejo:
|
|
image: codeberg.org/forgejo/forgejo:11
|
|
ports:
|
|
- '3000:3000'
|
|
- '222:22'
|
|
volumes:
|
|
- data:/data/gitea
|
|
- ./app.ini:/data/gitea/conf/app.ini:ro
|
|
|
|
healthcheck:
|
|
test: ["CMD", "curl", "localhost:3000/api/healthz"]
|
|
|
|
|
|
volumes:
|
|
data:
|