1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-25 01:09:40 +08:00
1Panel-Appstore/apps/gitlab/18.5.1-ee.0/docker-compose.yml
pooneyy 4fc5f22cb3
feat(gitlab): add community edition support and improve configuration
- add new gitlab 18.5.1-ce.0 community edition with data.yml and docker-compose.yml
- standardize SSH port environment variable naming from PANEL_APP_PORT_22 to PANEL_APP_PORT_SSH across both editions
- update SSH port labels for better clarity in both English and Chinese
- enhance README with edition clarification (ce for community, ee for enterprise)
2025-10-31 00:28:43 +08:00

26 lines
566 B
YAML

version: "3.6"
services:
gitlab-jh:
image: gitlab/gitlab-ee:18.5.1-ee.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_SSH}:22
volumes:
- './config:/etc/gitlab'
- './logs:/var/log/gitlab'
- './data:/var/opt/gitlab'
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true