1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-19 06:11:02 +08:00
pooneyy 405f44c24c
feat(forgejo): update configuration, documentation, and branding across versions
- reorder and update form fields in data.yml for all versions (14-rootless, 14.0.1-rootless, 14.0.1, 14)
- add 'edit: true' property to port fields
- update database field labels and add Turkish (tr) translations
- change default database username and password values
- update docker-compose volumes and ports mapping for all versions
- remove obsolete upgrade.sh scripts
- rewrite README with detailed product introduction and features
- update main data.yml with new description, type, and supported architectures
- update application logo
2026-01-27 00:25:57 +08:00

28 lines
781 B
YAML

services:
forgejo:
image: codeberg.org/forgejo/forgejo:14-rootless
container_name: ${CONTAINER_NAME}
environment:
- USER_UID=1000
- USER_GID=1000
- forgejo__database__DB_TYPE=${PANEL_DB_TYPE}
- forgejo__database__HOST=${PANEL_DB_HOST}:${PANEL_DB_PORT}
- forgejo__database__NAME=${PANEL_DB_NAME}
- forgejo__database__USER=${PANEL_DB_USER}
- forgejo__database__PASSWD=${PANEL_DB_USER_PASSWORD}
restart: always
networks:
- 1panel-network
volumes:
- ./forgejo:/var/lib/gitea
- ./conf:/etc/gitea
- /etc/localtime:/etc/localtime:ro
ports:
- ${PANEL_APP_PORT_HTTP}:3000
- ${PANEL_APP_PORT_SSH}:2222
labels:
createdBy: Apps
networks:
1panel-network:
external: true