Compare commits

2 Commits

Author SHA1 Message Date
Pablo de la Torre
088cc5aef0 fix(security): remove exposed ports to wan 2026-05-13 19:25:51 +02:00
b0eb56468e ci(config): update infrastructure configuration 2026-05-03 12:44:21 +02:00
2 changed files with 2 additions and 6 deletions

2
Jenkinsfile vendored
View File

@@ -2,7 +2,7 @@ pipeline {
agent any
environment {
REGISTRY_URL = "registry.pablotj.com"
REGISTRY_URL = "registry.nortapp.com"
USER = "andromeda"
PASS = credentials('docker-registry-password')
}

View File

@@ -2,13 +2,10 @@ STACK=pablotj-portfolio
APP_NAME=pablotj-portfolio-web
IMAGE_NAME=$(APP_NAME)
REGISTRY_URL=registry.pablotj.com
REGISTRY_URL=registry.nortapp.com
NAMESPACE=andromeda
TAG?=latest
HOST_PORT=8180
CONTAINER_PORT=80
IMAGE_FULL=$(REGISTRY_URL)/$(NAMESPACE)/$(IMAGE_NAME):$(TAG)
build:
@@ -26,7 +23,6 @@ run:
--label com.docker.compose.service="$(APP_NAME)" \
--label com.docker.compose.project="$(STACK)" \
--network andromeda \
-p $(HOST_PORT):$(CONTAINER_PORT) \
--env-file .env \
$(IMAGE_FULL)