Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@LiveOverflow
Last active January 3, 2022 15:42
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save LiveOverflow/8bf92dd86e5c481fb484af83c64e83b3 to your computer and use it in GitHub Desktop.
Save LiveOverflow/8bf92dd86e5c481fb484af83c64e83b3 to your computer and use it in GitHub Desktop.
flaglab - Real World CTF 2018
web:
image: 'gitlab/gitlab-ce:11.4.7-ce.0'
restart: always
hostname: 'gitlab.example.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://gitlab.example.com'
redis['bind']='127.0.0.1'
redis['port']=6379
gitlab_rails['initial_root_password']=File.read('/steg0_initial_root_password')
ports:
- '5080:80'
- '50443:443'
- '5022:22'
volumes:
- './srv/gitlab/config:/etc/gitlab'
- './srv/gitlab/logs:/var/log/gitlab'
- './srv/gitlab/data:/var/opt/gitlab'
- './steg0_initial_root_password:/steg0_initial_root_password'
- './flag:/flag:ro'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment