mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 00:26:55 +08:00
8609c567dd
* chore(deps): update gitea.cn/gitea/gitea docker tag to v1.21.11 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
27 lines
761 B
YAML
27 lines
761 B
YAML
services:
|
|
gitea:
|
|
image: gitea.cn/gitea/gitea:1.21.11
|
|
container_name: ${CONTAINER_NAME}
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
- GITEA__database__DB_TYPE=${PANEL_DB_TYPE}
|
|
- GITEA__database__HOST=${PANEL_DB_HOST}:${PANEL_DB_PORT}
|
|
- GITEA__database__NAME=${PANEL_DB_NAME}
|
|
- GITEA__database__USER=${PANEL_DB_USER}
|
|
- GITEA__database__PASSWD=${PANEL_DB_USER_PASSWORD}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
volumes:
|
|
- ./data:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
- "${PANEL_APP_PORT_SSH}:22"
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |