Commit 7f4d1a74 authored by Reza Sahebgharan's avatar Reza Sahebgharan

update yml files for using private register instead of hub

parent 82e7fad1
Pipeline #407 passed with stages
in 17 minutes and 1 second
...@@ -10,6 +10,7 @@ stages: ...@@ -10,6 +10,7 @@ stages:
build_in_branch: build_in_branch:
before_script: before_script:
- $env:TAG_VERSION=(git describe --tag --abbrev=0) - $env:TAG_VERSION=(git describe --tag --abbrev=0)
- docker login -u reza.s -p aA123456 repo.marcopacs.com
stage: build_in_branch stage: build_in_branch
tags: tags:
- shell - shell
......
...@@ -18,7 +18,7 @@ services: ...@@ -18,7 +18,7 @@ services:
PORT: 3000 PORT: 3000
METEOR_SETTINGS: '{"worklistUrl":"http://192.168.0.156"}' METEOR_SETTINGS: '{"worklistUrl":"http://192.168.0.156"}'
mongo: mongo:
image: mongo:latest image: repo.marcopacs.com/kelishe/mongo:4.2.0
command: command:
- --storageEngine=wiredTiger - --storageEngine=wiredTiger
volumes: volumes:
......
...@@ -21,7 +21,7 @@ services: ...@@ -21,7 +21,7 @@ services:
PORT: 3000 PORT: 3000
METEOR_SETTINGS: '{"worklistUrl":"http://192.168.0.156"}' METEOR_SETTINGS: '{"worklistUrl":"http://192.168.0.156"}'
mongo: mongo:
image: mongo:latest image: repo.marcopacs.com/kelishe/mongo:4.2.0
command: command:
- --storageEngine=wiredTiger - --storageEngine=wiredTiger
volumes: volumes:
......
# The tag here should match the Meteor version of your app, per .meteor/release # The tag here should match the Meteor version of your app, per .meteor/release
FROM geoffreybooth/meteor-base:1.8.1 # FROM geoffreybooth/meteor-base:1.8.1
FROM repo.marcopacs.com/kelishe/meteor-base:1.8.1
WORKDIR $APP_SOURCE_FOLDER/ WORKDIR $APP_SOURCE_FOLDER/
...@@ -16,7 +18,8 @@ COPY . $APP_SOURCE_FOLDER/ ...@@ -16,7 +18,8 @@ COPY . $APP_SOURCE_FOLDER/
RUN bash $SCRIPTS_FOLDER/build-meteor-bundle.sh RUN bash $SCRIPTS_FOLDER/build-meteor-bundle.sh
# Rather than Node 8 latest (Alpine), you can also use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html # Rather than Node 8 latest (Alpine), you can also use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html
FROM node:12-alpine # FROM node:12-alpine
FROM repo.marcopacs.com/kelishe/node12.10.0:alpine3.9
ENV APP_BUNDLE_FOLDER /opt/bundle ENV APP_BUNDLE_FOLDER /opt/bundle
ENV SCRIPTS_FOLDER /docker ENV SCRIPTS_FOLDER /docker
......
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 to comment