Created
July 13, 2019 13:39
-
-
Save joonvena/9390c8f3e91df17a95a226f75fc24d7c to your computer and use it in GitHub Desktop.
gerrit compose
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
version: '3.1' | |
services: | |
gerrit: | |
image: gerritcodereview/gerrit | |
environment: | |
- CANONICAL_WEB_URL=http://localhost:8100/ | |
volumes: | |
- ./gerrit/:/var/gerrit/etc/ | |
ports: | |
- "29418:29418" | |
apache: | |
image: httpd | |
volumes: | |
- ./httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf | |
- ./httpd/.htpasswd:/usr/local/apache2/conf/.htpasswd | |
ports: | |
- "8100:80" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment