Commit 9053aa6d by amir

changes

parent fdc3dad5
No preview for this file type
version: '2'
services:
##### Jenkins
jenkins:
image: jenkins
ports:
- "8080:8080"
- "50000:50000"
volumes:
- "/mnt/volume-nyc1-01/jenkins:/var/jenkins_home"
- "/usr/share/gradle:/var/jenkins_home/gradle_home"
- "/usr/lib/jvm/java-8-oracle:/usr/lib/jvm/default-java"
networks:
- develop
##### archiva
archiva:
image: xetusoss/archiva
ports:
- "8081:8080"
volumes:
- "/mnt/volume-nyc1-01/archiva:/archiva-data"
# - "/mnt/volume-nyc1-01/archiva/data:/var/archiva/data"
# - "/mnt/volume-nyc1-01/archiva/conf:/var/archiva/conf"
networks:
- develop
#### GITLAB
#### root admin: user: root , pass: giptmgr1
gitlab:
image: gitlab/gitlab-ce:9.3.6-ce.0
restart: always
hostname: 'municipalitybank.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
gitlab_rails['gitlab_shell_ssh_port'] = 2224
nginx['custom_gitlab_server_config'] = "location ^~ /.well-known { root /var/www/letsencrypt; }"
external_url 'https://municipalitybank.com'
registry_external_url 'https://municipalitybank.com:5050'
nginx['redirect_http_to_https'] = true
nginx['ssl_certificate'] = "/etc/letsencrypt/live/municipalitybank.com/fullchain.pem"
nginx['ssl_certificate_key'] = "/etc/letsencrypt/live/municipalitybank.com/privkey.pem"
registry_nginx['ssl_certificate'] = "/etc/letsencrypt/live/municipalitybank.com/fullchain.pem"
registry_nginx['ssl_certificate_key'] = "/etc/letsencrypt/live/municipalitybank.com/privkey.pem"
ports:
- "443:443"
- "80:80"
- "2224:22"
- "5050:5050"
volumes:
- "/mnt/volume-nyc1-01/gitlab/config:/etc/gitlab"
- "/mnt/volume-nyc1-01/gitlab/logs:/var/log/gitlab"
- "/mnt/volume-nyc1-01/gitlab/data:/var/opt/gitlab"
- "/mnt/volume-nyc1-01/gitlab/backups:/var/opt/gitlab/backups"
- "/mnt/volume-nyc1-01/gitlab/letsencrypt:/var/www/letsencrypt"
- "/mnt/volume-nyc1-01/gitlab/letsencrypt:/etc/letsencrypt"
networks:
- develop
networks:
develop:
driver: bridge
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment