init
This commit is contained in:
32
privfrontends/compose/gothub-dev/compose.yml.j2
Normal file
32
privfrontends/compose/gothub-dev/compose.yml.j2
Normal file
@ -0,0 +1,32 @@
|
||||
version: "3"
|
||||
services:
|
||||
gothub:
|
||||
image: codeberg.org/gothub/gothub:dev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "1025:3000"
|
||||
environment:
|
||||
- DOCKER=true
|
||||
- GOTHUB_SETUP_COMPLETE=true
|
||||
- GOTHUB_PROXYING_ENABLED=true
|
||||
- GOTHUB_IP_LOGGED=false
|
||||
- GOTHUB_REQUEST_URL_LOGGED=false
|
||||
- GOTHUB_USER_AGENT_LOGGED=false
|
||||
- GOTHUB_DIAGNOSTIC_INFO_LOGGED=false
|
||||
- GOTHUB_INSTANCE_PRIVACY_POLICY=https://projectsegfau.lt/legal/privacy-policy
|
||||
{% if inventory_hostname == 'eu' %}
|
||||
- GOTHUB_INSTANCE_COUNTRY=Luxembourg
|
||||
- GOTHUB_INSTANCE_PROVIDER=BuyVM
|
||||
{% else if inventory_hostname == 'us' %}
|
||||
- GOTHUB_INSTANCE_COUNTRY=United States
|
||||
- GOTHUB_INSTANCE_PROVIDER=Digital Ocean
|
||||
{% else if inventory_hostname == 'in' %}
|
||||
- GOTHUB_INSTANCE_COUNTRY=India
|
||||
- GOTHUB_INSTANCE_PROVIDER=Bharti Airtel
|
||||
{% endif %}
|
||||
- GOTHUB_INSTANCE_CLOUDFLARE=false
|
||||
healthcheck:
|
||||
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/version || exit 1
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 2
|
Reference in New Issue
Block a user