Skip to content

Commit

Permalink
added portainer latest and gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
mahajanankur committed Feb 16, 2021
1 parent afcae10 commit 01d8ff6
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gitlab/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ services:
image: 'gitlab/gitlab-ce:latest'
restart: always
# hostname: 'gitlab.example.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'https://gitlab.example.com'
# environment:
# GITLAB_OMNIBUS_CONFIG: |
# external_url 'http://gitlab.example.com'
ports:
- '80:80'
- '443:443'
- '22:22'
- '8929:8929'
- '2224:22'
- '9001:80'
volumes:
- '${GITLAB_HOME}/config:/etc/gitlab'
- '${GITLAB_HOME}/logs:/var/log/gitlab'
Expand Down
3 changes: 3 additions & 0 deletions sonarqube/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
COMPOSE_PROJECT_NAME=binary
COMPOSE_HTTP_TIMEOUT=120
EXPOSED_PORT=9000
25 changes: 25 additions & 0 deletions sonarqube/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: "3.3"
# https://github.com/SonarSource/docker-sonarqube
services:
sonarqube:
container_name: sonarqube
image: sonarqube:8.6.1-community
ports:
- "${EXPOSED_PORT}:9000"
networks:
- sonarnet
volumes:
- sonarqube_data:/opt/sonarqube/data
- sonarqube_extensions:/opt/sonarqube/extensions
- sonarqube_logs:/opt/sonarqube/logs
- sonarqube_temp:/opt/sonarqube/temp

networks:
sonarnet:
driver: bridge

volumes:
sonarqube_data:
sonarqube_extensions:
sonarqube_logs:
sonarqube_temp:

0 comments on commit 01d8ff6

Please sign in to comment.