Webui does not reflect repository after push #7393

Closed
opened 2025-11-02 07:24:43 -06:00 by GiteaMirror · 1 comment
Owner

Originally created by @LeducH on GitHub (May 27, 2021).

  • Gitea version (or commit ref): Gitea Version: 1.14.2

  • Git version: git version 2.31.1

  • Operating system:

  • OS: Arch Linux x86_64
    Kernel: 5.12.6-arch1-1

  • Database (use [x]):

    • PostgreSQL
    • MySQL
    • MSSQL
    • SQLite
  • Can you reproduce the bug at https://try.gitea.io:

    • Yes (provide example URL)
    • No
  • Log gist:

Description

version: "3"

networks:
  gitea:
    external: false

services:
  server:
    image: gitea/gitea:1.14.2
    container_name: gitea
    environment:
      - USER_UID=1000
      - USER_GID=984
      - DISABLE_REGISTRATION=true
      - GITEA__database__DB_TYPE=postgres
      - GITEA__database__HOST=db:5432
      - GITEA__database__NAME=gitea
      - GITEA__database__USER=gitea
      - GITEA__database__PASSWD=gitea
    restart: always
    networks:
      - gitea
    volumes:
      - /mnt/shared/AppData/gitea/data:/data
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "3030:3000"
      - "222:22"
    depends_on:
      - db

  db:
    image: postgres:13
    restart: always
    environment:
      - POSTGRES_USER=gitea
      - POSTGRES_PASSWORD=gitea
      - POSTGRES_DB=gitea
    networks:
      - gitea
    volumes:
      - /mnt/shared/AppData/gitea/postgres:/var/lib/postgresql/data

Screenshots

Originally created by @LeducH on GitHub (May 27, 2021). <!-- NOTE: If your issue is a security concern, please send an email to security@gitea.io instead of opening a public issue --> <!-- 1. Please speak English, this is the language all maintainers can speak and write. 2. Please ask questions or configuration/deploy problems on our Discord server (https://discord.gg/gitea) or forum (https://discourse.gitea.io). 3. Please take a moment to check that your issue doesn't already exist. 4. Make sure it's not mentioned in the FAQ (https://docs.gitea.io/en-us/faq) 5. Please give all relevant information below for bug reports, because incomplete details will be handled as an invalid report. --> - Gitea version (or commit ref): Gitea Version: 1.14.2 - Git version: git version 2.31.1 - Operating system: - OS: Arch Linux x86_64 Kernel: 5.12.6-arch1-1 - Database (use `[x]`): - [x] PostgreSQL - [ ] MySQL - [ ] MSSQL - [ ] SQLite - Can you reproduce the bug at https://try.gitea.io: - [ ] Yes (provide example URL) - [x] No - Log gist: <!-- It really is important to provide pertinent logs --> <!-- Please read https://docs.gitea.io/en-us/logging-configuration/#debugging-problems --> <!-- In addition, if your problem relates to git commands set `RUN_MODE=dev` at the top of app.ini --> ## Description <!-- If using a proxy or a CDN (e.g. CloudFlare) in front of gitea, please disable the proxy/CDN fully and connect to gitea directly to confirm the issue still persists without those services. --> ``` version: "3" networks: gitea: external: false services: server: image: gitea/gitea:1.14.2 container_name: gitea environment: - USER_UID=1000 - USER_GID=984 - DISABLE_REGISTRATION=true - GITEA__database__DB_TYPE=postgres - GITEA__database__HOST=db:5432 - GITEA__database__NAME=gitea - GITEA__database__USER=gitea - GITEA__database__PASSWD=gitea restart: always networks: - gitea volumes: - /mnt/shared/AppData/gitea/data:/data - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro ports: - "3030:3000" - "222:22" depends_on: - db db: image: postgres:13 restart: always environment: - POSTGRES_USER=gitea - POSTGRES_PASSWORD=gitea - POSTGRES_DB=gitea networks: - gitea volumes: - /mnt/shared/AppData/gitea/postgres:/var/lib/postgresql/data ``` ## Screenshots <!-- **If this issue involves the Web Interface, please include a screenshot** -->
Author
Owner

@LeducH commented on GitHub (May 27, 2021):

Check if the drive you mounted to has the noexec tag in the fstab as mentioned in #14132. I pointed to a different drive and it works.

@LeducH commented on GitHub (May 27, 2021): Check if the drive you mounted to has the `noexec` tag in the `fstab` as mentioned in #14132. I pointed to a different drive and it works.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#7393