-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Description
Description

Been experiencing this error recently when I switched from Gitea Binary installation to Gitea Docker.
This is currently hosted via Apache. Proxied port 3333 to my domain Under cloudflare
However, I tried tunneling the port (3333) and pulling the repository and it works fine.

Let me know if you need more details about this issue that I am currently experiencing
Gitea Version
1.24.3
Can you reproduce the bug on the Gitea demo site?
No
Log Gist
No response
Screenshots
No response
Git Version
2.49.1
Operating System
Ubuntu 20.04.6 LTS
How are you running Gitea?
version: '3.3'
volumes:
gitea_repositories:
gitea_data:
repos:
driver: local
driver_opts:
type: none
device: /mnt/gitea
o: bind
networks:
gitea:
external: false
services:
server:
image: docker.gitea.com/gitea:latest
tty: true
container_name: gitea_server
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=db:5432
- GITEA__database__NAME=gitea
- GITEA__database__USER=postgres
- GITEA__database__PASSWD=p0stgr3s
- GITEA_actions_ENABLED=true
restart: always
networks:
- gitea
volumes:
- /mnt/gitea/data:/data
- ./dump:/dump
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3333:3000"
- "222:22"
depends_on:
- db
db:
container_name: gitea_postgres
image: docker.io/library/postgres:14
tty: true
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=p0stgr3s
- POSTGRES_DB=gitea
- ./postgres:/var/lib/postgresql/data
networks:
- gitea
volumes:
- ./postgres:/var/lib/postgresql/data
runner:
container_name: gitea-act-runner
depends_on:
- server
volumes:
- ./runner:/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- gitea
image: gitea/act_runner
privileged: true
tty: true
environment:
- GITEA_INSTANCE_URL=https://git.andrewhamili.com
- GITEA_RUNNER_NAME=Runner
- GITEA_RUNNER_REGISTRATION_TOKEN=bNfvCb3TudlgeMY0f3CJnKEkJC19gra5ypTHazRW
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:16-buster`
Database
PostgreSQL