2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 06:17:13 +08:00
Files
templates/gitlab/docker-compose.yml
renovate[bot] 4d8f0d2c3e chore(deps): update docker images (minor/patch/digest) (#1)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-16 06:35:29 +08:00

23 lines
489 B
YAML

services:
gitlab:
image: gitlab/gitlab-ce:18.8.0-ce.0
networks:
- acepanel-network
cap_add:
- NET_ADMIN
restart: unless-stopped
ports:
- "${GITLAB_PORT_HTTP}:80"
- "${GITLAB_PORT_SSH}:22"
environment:
TZ: ${GITLAB_TIME_ZONE}
volumes:
- "./data/config:/etc/gitlab"
- "./data/logs:/var/log/gitlab"
- "./data/data:/var/opt/gitlab"
shm_size: ${GITLAB_SHM_SIZE}
networks:
acepanel-network:
external: true