21 lines
484 B
YAML
21 lines
484 B
YAML
|
|
mainunit: forgejo.service
|
||
|
|
mainunitfile: forgejo.service.j2
|
||
|
|
ports:
|
||
|
|
- web
|
||
|
|
templatefiles:
|
||
|
|
- src: compose.yml.j2
|
||
|
|
dest: ~/compose.yml
|
||
|
|
exports:
|
||
|
|
web:
|
||
|
|
- proxyaddress: "http://127.0.0.1:{{ ports.web }}"
|
||
|
|
publicname: "{{ config.publicurl | default(name, true) }}"
|
||
|
|
configdefinition:
|
||
|
|
description: Extra forgejo
|
||
|
|
type: object
|
||
|
|
additionalProperties: false
|
||
|
|
properties:
|
||
|
|
publicurl:
|
||
|
|
type: string
|
||
|
|
description: The domainname published to nginx
|
||
|
|
default: ""
|