mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-29 01:04:59 +08:00
- upgrade gitlab-jh from version 18.3.1-jh.0 to 18.4.0-jh.0 - system requirementsadd memory requirement specification (2560 MB) - system requirements add architecture support for both amd64 and arm64 - update docker-compose configuration with new version
26 lines
585 B
YAML
26 lines
585 B
YAML
version: "3.6"
|
|
services:
|
|
gitlab-jh:
|
|
image: registry.gitlab.cn/omnibus/gitlab-jh:18.4.0-jh.0
|
|
container_name: ${CONTAINER_NAME}
|
|
hostname: localhost
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
environment:
|
|
GITLAB_OMNIBUS_CONFIG: |
|
|
external_url 'http://localhost/'
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:80
|
|
- ${PANEL_APP_PORT_22}:22
|
|
volumes:
|
|
- './config:/etc/gitlab'
|
|
- './logs:/var/log/gitlab'
|
|
- './data:/var/opt/gitlab'
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|