Commit b0b59c77 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Configura deploy de servicio, usa imagen externa

parent 734029e1
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+15 −0
Original line number Diff line number Diff line
include:
  - project: 'redmic-project/gitlab-ci-templates'
    ref: master
    file: '/deployment.yml'

stages:
  - deploy

variables:
  PROJECT_PARENT_NAME: metric

.deploy:
  variables:
    STACK: ${PROJECT_PARENT_NAME}
    SERVICES_TO_CHECK: ${PROJECT_PARENT_NAME}_${CI_PROJECT_NAME}

deploy/.env

0 → 100644
+3 −0
Original line number Diff line number Diff line
PORT=9323
DOCKER_GWBRIDGE_IP=172.18.0.1
DOCKER_GWBRIDGE_PORT=9323
+6 −0
Original line number Diff line number Diff line
:{$PORT} {
	proxy / {$DOCKER_GWBRIDGE_IP}:{$DOCKER_GWBRIDGE_PORT} {
		transparent
	}
	tls off
}
+1 −0
Original line number Diff line number Diff line
version: '3.5'
+1 −0
Original line number Diff line number Diff line
version: '3.5'
Loading