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