mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-19 03:51:04 +08:00
- 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
27 lines
735 B
YAML
27 lines
735 B
YAML
services:
|
|
forgejo:
|
|
image: codeberg.org/forgejo/forgejo:14
|
|
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:/data
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:3000
|
|
- ${PANEL_APP_PORT_SSH}:22
|
|
labels:
|
|
createdBy: Apps
|
|
networks:
|
|
1panel-network:
|
|
external: true
|