Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't push to repository after latest update (Docker) #18355

Closed
odinsride opened this issue Jan 21, 2022 · 1 comment
Closed

Can't push to repository after latest update (Docker) #18355

odinsride opened this issue Jan 21, 2022 · 1 comment
Labels
issue/duplicate The issue has already been reported.

Comments

@odinsride
Copy link

Gitea Version

1.16.0+rc1

Git Version

No response

Operating System

OpenSUSE Leap + Docker

How are you running Gitea?

Docker-compose:

gitea-db:
    image: lscr.io/linuxserver/mariadb
    container_name: gitea-db
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - MYSQL_ROOT_PASSWORD=${GITEA_MYSQL_ROOT_PASSWORD}
      - MYSQL_USER=${GITEA_MYSQL_USER}
      - MYSQL_PASSWORD=${GITEA_MYSQL_PASSWORD}
      - MYSQL_DATABASE=${GITEA_MYSQL_DATABASE}
    volumes:
      - ${APPDATA_BASE}/gitea-db:/config
    ports:
      - 3306:3306
    restart: unless-stopped

  gitea:
    image: gitea/gitea:latest
    container_name: gitea
    environment:
      - USER_UID=${GITEA_UID}
      - USER_GID=${GITEA_GID}
      - GITEA__database__DB_TYPE=mysql
      - GITEA__database__HOST=gitea-db:3306
      - GITEA__database__NAME=${GITEA_MYSQL_DATABASE}
      - GITEA__database__USER=${GITEA_MYSQL_USER}
      - GITEA__database__PASSWD=${GITEA_MYSQL_PASSWORD}
    volumes:
      - ${APPDATA_BASE}/gitea:/data
      - ${BACKUP_BASE}/gitea:/tmp
      - ${GITEA_SSH_PATH}:/data/git/.ssh
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "3000:3000"
      - "127.0.0.1:2222:22"
    depends_on:
      - gitea-db
    restart: unless-stopped

Database

MySQL

Can you reproduce the bug on the Gitea demo site?

No

Log Gist

No response

Description

bash: /usr/local/bin/gitea: No such file or directory
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.`

Screenshots

No response

@techknowlogick
Copy link
Member

closing as dupe of #18117

@techknowlogick techknowlogick added the issue/duplicate The issue has already been reported. label Jan 21, 2022
@go-gitea go-gitea locked and limited conversation to collaborators Apr 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
issue/duplicate The issue has already been reported.
Projects
None yet
Development

No branches or pull requests

2 participants