Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '2'
- services:
- postgresql:
- image: postgres:9.6.3
- environment:
- - "POSTGRES_DB=gitlabhq_production"
- - "POSTGRES_USER=gitlab"
- - "POSTGRES_PASSWORD=password"
- volumeMounts:
- - name: gluster-vol1
- mountPath: /var/lib/postgresql
- volumes:
- - name: gluster-vol1
- persistentVolumeClaim:
- claimName: gluster-dyn-pvc
- restart: unless-stopped
- redisio:
- image: sameersbn/redis:latest
- volumeMounts:
- - name: gluster-vol1
- mountPath: /var/lib/redis
- volumes:
- - name: gluster-vol1
- persistentVolumeClaim:
- claimName: gluster-dyn-pvc
- restart: unless-stopped
- gitlab:
- image: sameersbn/gitlab:9.3.9
- ports:
- - "443:443"
- - "80:80"
- - "10022:22"
- environment:
- - "GITLAB_PORT=80"
- - "GITLAB_SSH_PORT=10022"
- - "GITLAB_SECRETS_DB_KEY_BASE=110Ect4CBH06RSEQm4uKC4MPh3uThFjxbpCyPzxfdLkkssrStDnrQgpSSV"
- - "GITLAB_SECRETS_SECRET_KEY_BASE=2KO4r2XDZzy3XVrH2r0QNyhQcP9P0t6j71MBDUmfx4F5KZ9j4Md"
- - "GITLAB_SECRETS_OTP_KEY_BASE=MWxqmqqXz9iz7Up4tEGBFSjYwUwLAlIErL1Ry1rWCTWBjw3qxtvOM"
- volumeMounts:
- - name: gluster-vol1
- mountPath: /home/git/data
- volumes:
- - name: gluster-vol1
- persistentVolumeClaim:
- claimName: gluster-dyn-pvc
- restart: unless-stopped
Add Comment
Please, Sign In to add comment