-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Closed
Labels
Description
Description
Dear Gitea Developers,
Thank you very much for the ineffably marvelous project, solution, work...
I am sorry, but just wanted to report a behavior when two "Install Gitea" buttons appear at the very first installation procedure (with Docker) for currently unknown reason. It seems like there's no such condition in the template.
Considering some screenshots found online, it looked unintentional:
Best and kind regards ✨
Gitea Version
1.20.5
Can you reproduce the bug on the Gitea demo site?
No
Log Gist
No response
Screenshots


Git Version
2.40.1
Operating System
Docker at Ubuntu Server 22.04.3
How are you running Gitea?
Docker version 24.0.6, build ed223bc
.
`docker-compose.yaml`
version: '3'
name: 'gitea'
services:
gitea:
image: 'gitea/gitea'
hostname: "${APP_HOSTNAME}"
environment:
- 'USER_UID=1000'
- 'USER_GID=1000'
- 'GITEA__database__DB_TYPE=postgres'
- 'GITEA__database__HOST=db:5432'
- "GITEA__database__NAME=${DB_DATABASE}"
- "GITEA__database__USER=${DB_USERNAME}"
- "GITEA__database__PASSWD=${DB_PASSWORD}"
volumes:
- '/var/docker/gitea/data:/data'
ports:
- '2000:22'
networks:
- 'gitea'
depends_on:
db:
condition: 'service_healthy'
db:
image: 'postgres'
environment:
- "POSTGRES_DB=${DB_DATABASE}"
- "POSTGRES_USER=${DB_USERNAME}"
- "POSTGRES_PASSWORD=${DB_PASSWORD}"
volumes:
- '/var/docker/gitea/db:/var/lib/postgresql/data'
networks:
- 'gitea'
healthcheck:
test: ["CMD-SHELL", "sh -c 'pg_isready -U ${DB_USERNAME} -d ${DB_DATABASE}'"]
interval: 10s
timeout: 3s
retries: 3
networks:
gitea:
Database
PostgreSQL