Codebase list ruby-gitlab / a6c98ec7-e6cb-4782-9fd4-933278cc2bfc/main docker-compose.yml
a6c98ec7-e6cb-4782-9fd4-933278cc2bfc/main

Tree @a6c98ec7-e6cb-4782-9fd4-933278cc2bfc/main (Download .tar.gz)

docker-compose.yml @a6c98ec7-e6cb-4782-9fd4-933278cc2bfc/main

87adcfe
ec6860b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
---
# For more information, see https://docs.gitlab.com/omnibus/docker/README.html#install-gitlab-using-docker-compose
version: '3'
services:
  app:
    build: .
    volumes:
      - ./:/app
    env_file: docker.env

  gitlab:
    image: 'gitlab/gitlab-ce:latest'
    restart: always
    hostname: 'gitlab.example.com'
    environment:
      GITLAB_OMNIBUS_CONFIG: |
        external_url 'http://gitlab.example.com:3000'
        # Add any other gitlab.rb configuration here, each on its own line
    ports:
      - 3000:3000