We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f2e76 commit 6ee1cb4Copy full SHA for 6ee1cb4
docker-compose.yml
@@ -11,12 +11,17 @@ services:
11
nginx['listen_port'] = '80'
12
nginx['listen_https'] = false
13
gitlab_rails['gitlab_shell_ssh_port'] = ${GITLAB_SSH_PORT}
14
+ # Traefik labels are suggested as an example for people using Traefik,
15
+ # remove them if you are using another reverse proxy.
16
labels:
17
traefik.backend: 'gitlab'
18
traefik.enable: 'true'
19
traefik.docker.network: 'web'
20
traefik.frontend.rule: "Host:${GITLAB_HOSTNAME}"
21
traefik.port: '80'
22
+ # If you don't want to use a reverse proxy (not suitable for production!)
23
+ # ports:
24
+ # - "80:80"
25
networks:
26
- default
27
- web
0 commit comments