Last active
January 3, 2022 15:42
-
-
Save LiveOverflow/8bf92dd86e5c481fb484af83c64e83b3 to your computer and use it in GitHub Desktop.
flaglab - Real World CTF 2018
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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