@@ -0,0 +1,27 @@
+pipeline {
+ agent any
+ stages {
+ stage('build') {
+ steps {
+ sh '''
+ cd /home/administrador/Documentos/GIT/Inversys/app/frontend/
+ git pull
+ '''
+ }
+ stage('Test') {
+ echo 'Testing..'
+ stage('Deploy') {
+ cd /home/administrador/Documentos/GIT/Inversys/
+ echo $USER
+ docker-compose up -d --build frontend
+}