deployment_files
This commit is contained in:
parent
771479615d
commit
d6b5032683
33
sureops/testvjsnjs501-back-b/deployment/Dockerfile
Executable file
33
sureops/testvjsnjs501-back-b/deployment/Dockerfile
Executable file
@ -0,0 +1,33 @@
|
||||
# Git clone stage
|
||||
FROM farhan23432/ris_git:2.30.1 AS code
|
||||
ARG BUILD_ID
|
||||
RUN echo $BUILD_ID
|
||||
LABEL stage=builder
|
||||
LABEL build_id=$BUILD_ID
|
||||
RUN mkdir /repo
|
||||
WORKDIR /repo
|
||||
ARG PAT_TOKEN
|
||||
ENV PAT_TOKEN=$PAT_TOKEN
|
||||
|
||||
RUN git clone http://$GITEA_USER:$GITEA_PASS@git.cloudnsure.com/abdul_1713004506587/testvjsnjs501.git
|
||||
|
||||
# Node.js stage
|
||||
FROM node:14
|
||||
LABEL stage=builder
|
||||
LABEL build_id=$BUILD_ID
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Copy package.json and package-lock.json to the working directory
|
||||
COPY --from=code /repo/testvjsnjs501/testvjsnjs501-back-b/authsec_node/Backend/package*.json ./
|
||||
|
||||
# Install app dependencies
|
||||
RUN npm install
|
||||
|
||||
# Copy the entire contents of the Backend directory
|
||||
COPY --from=code /repo/testvjsnjs501/testvjsnjs501-back-b/authsec_node/Backend .
|
||||
|
||||
# Expose port 9292
|
||||
EXPOSE 9292
|
||||
|
||||
# Command to run the application
|
||||
CMD [ "npm", "start" ]
|
39
sureops/testvjsnjs501-back-b/deployment/build.sh
Executable file
39
sureops/testvjsnjs501-back-b/deployment/build.sh
Executable file
@ -0,0 +1,39 @@
|
||||
#!/bin/bash
|
||||
PRJ_NAME=testvjsnjs501-back-b
|
||||
DOCKER_USER=abdul_1713004506587
|
||||
DOCKER_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
DOCKER_URL=git.cloudnsure.com
|
||||
#********************
|
||||
REPO_NAME=testvjsnjs501
|
||||
GITEA_USER=abdul_1713004506587
|
||||
GITEA_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
GITEA_EMAIL=abdul@dekatc.com
|
||||
GIT_BRANCH=main
|
||||
DOMAIN=git.cloudnsure.com
|
||||
#WEB-URL-PORT
|
||||
CONT_PORT=3306
|
||||
TARGET_PORT=9292
|
||||
PATH_DIR=/data/32430_1730720138598/sureops_deploy/testvjsnjs501/sureops/testvjsnjs501-back-b/deployment
|
||||
#**********************
|
||||
cd $PATH_DIR
|
||||
DOCKER_TAG=1.0
|
||||
#docker system prune -f
|
||||
# Stop any existing containers with the same name and ports
|
||||
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||
|
||||
# Build and push the Docker image
|
||||
DOCKER_BUILDKIT=0 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg $GITEA_PASS --build-arg $GITEA_USER .
|
||||
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
docker logout $DOCKER_URL
|
||||
#docker system prune -f
|
||||
# Deploy the image in a Docker container
|
||||
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
|
||||
curl -X GET "http://34.198.218.30:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
||||
docker network prune -f
|
||||
docker volume prune -f
|
||||
docker image prune -f --filter "dangling=true"
|
18
sureops/testvjsnjs501-db-d/deployment/Dockerfile
Executable file
18
sureops/testvjsnjs501-db-d/deployment/Dockerfile
Executable file
@ -0,0 +1,18 @@
|
||||
#pulling from github
|
||||
# FROM alpine/git:v2.30.1 AS code
|
||||
#ARG BUILD_ID
|
||||
#RUN echo $BUILD_ID
|
||||
#LABEL stage=builder
|
||||
#LABEL build_id=$BUILD_ID
|
||||
#RUN mkdir repo
|
||||
#WORKDIR /repo
|
||||
#RUN git clone http://risadmin:admin1234@try.gitea.io/risadmin/a_madhurtest1.git
|
||||
#******** Stage 2 - Mysql Build*********
|
||||
FROM mysql:8.0
|
||||
ENV MYSQL_ROOT_PASSWORD root
|
||||
COPY conf.d /etc/mysql/conf.d
|
||||
COPY *.sql /docker-entrypoint-initdb.d/
|
||||
#COPY --from=code /repo//data/32430_1730720138598/sureops_deploy/testvjsnjs501/testvjsnjs501-db-d/authsec_mysql/mysql/wf_table/backend/src/main/resources/ .
|
||||
VOLUME /var/lib/mysql
|
||||
EXPOSE 3306
|
||||
CMD ["mysqld"]
|
40
sureops/testvjsnjs501-db-d/deployment/build.sh
Executable file
40
sureops/testvjsnjs501-db-d/deployment/build.sh
Executable file
@ -0,0 +1,40 @@
|
||||
#!/bin/bash
|
||||
PRJ_NAME=testvjsnjs501-db-d
|
||||
DOCKER_USER=abdul_1713004506587
|
||||
DOCKER_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
DOCKER_URL=git.cloudnsure.com
|
||||
REPO_NAME=testvjsnjs501
|
||||
GITEA_USER=abdul_1713004506587
|
||||
GITEA_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
GITEA_EMAIL=abdul@dekatc.com
|
||||
GIT_BRANCH=main
|
||||
DOMAIN=git.cloudnsure.com
|
||||
CONT_PORT=3306
|
||||
TARGET_PORT=3306
|
||||
PATH_DIR=/data/32430_1730720138598/sureops_deploy/testvjsnjs501/sureops/testvjsnjs501-db-d/deployment
|
||||
|
||||
#**********************
|
||||
cd $PATH_DIR
|
||||
cp /data/32430_1730720138598/sureops_deploy/testvjsnjs501/testvjsnjs501-db-d/authsec_mysql/mysql/wf_table/*.sql .
|
||||
pwd
|
||||
DOCKER_TAG=1.0
|
||||
# Stop any existing containers with the same name and ports
|
||||
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||
|
||||
# Build and push the Docker image
|
||||
DOCKER_BUILDKIT=0 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg $GITEA_PASS --build-arg $GITEA_USER .
|
||||
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
IMAGE_ID=$(docker images --format "{{.ID}}" $IMAGE_NAME)
|
||||
docker logout $DOCKER_URL
|
||||
#docker system prune -f
|
||||
# Deploy the image in a Docker container
|
||||
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
#echo "Image $IMAGE_ID deployed in container $PRJ_NAME"
|
||||
curl -X GET "http://34.198.218.30:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
||||
docker volume prune -f
|
||||
docker network prune -f
|
||||
docker image prune -f --filter "dangling=true
|
36
sureops/testvjsnjs501-db-d/deployment/conf.d/config.ini
Executable file
36
sureops/testvjsnjs501-db-d/deployment/conf.d/config.ini
Executable file
@ -0,0 +1,36 @@
|
||||
# For advice on how to change settings please see
|
||||
# http://dev.mysql.com/doc/refman/8.0/en/server-configuration-defaults.html
|
||||
|
||||
[mysqld]
|
||||
#
|
||||
# Remove leading # and set to the amount of RAM for the most important data
|
||||
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
|
||||
# innodb_buffer_pool_size = 128M
|
||||
#
|
||||
# Remove leading # to turn on a very important data integrity option: logging
|
||||
# changes to the binary log between backups.
|
||||
# log_bin
|
||||
#
|
||||
# Remove leading # to set options mainly useful for reporting servers.
|
||||
# The server defaults are faster for transactions and fast SELECTs.
|
||||
# Adjust sizes as needed, experiment to find the optimal values.
|
||||
# join_buffer_size = 128M
|
||||
# sort_buffer_size = 2M
|
||||
# read_rnd_buffer_size = 2M
|
||||
|
||||
# Remove leading # to revert to previous value for default_authentication_plugin,
|
||||
# this will increase compatibility with older clients. For background, see:
|
||||
# https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
|
||||
# default-authentication-plugin=mysql_native_password
|
||||
skip-host-cache
|
||||
skip-name-resolve
|
||||
datadir=/var/lib/mysql
|
||||
socket=/var/run/mysqld/mysqld.sock
|
||||
secure-file-priv=/var/lib/mysql-files
|
||||
user=mysql
|
||||
|
||||
pid-file=/var/run/mysqld/mysqld.pid
|
||||
[client]
|
||||
socket=/var/run/mysqld/mysqld.sock
|
||||
|
||||
!includedir /etc/mysql/conf.d/
|
1173
sureops/testvjsnjs501-db-d/deployment/dump.sql
Executable file
1173
sureops/testvjsnjs501-db-d/deployment/dump.sql
Executable file
File diff suppressed because one or more lines are too long
48
sureops/testvjsnjs501-front-f/deployment/Dockerfile
Executable file
48
sureops/testvjsnjs501-front-f/deployment/Dockerfile
Executable file
@ -0,0 +1,48 @@
|
||||
# Git clone stage
|
||||
FROM farhan23432/ris_git:2.30.1 AS code
|
||||
ARG BUILD_ID
|
||||
RUN echo $BUILD_ID
|
||||
LABEL stage=builder
|
||||
LABEL build_id=$BUILD_ID
|
||||
RUN mkdir /repo
|
||||
WORKDIR /repo
|
||||
ARG PAT_TOKEN
|
||||
ENV PAT_TOKEN=$PAT_TOKEN
|
||||
|
||||
RUN git clone http://$GITEA_USER:$GITEA_PASS@git.cloudnsure.com/abdul_1713004506587/testvjsnjs501.git
|
||||
|
||||
# Node.js stage
|
||||
FROM node:lts-alpine as build
|
||||
LABEL stage=builder
|
||||
LABEL build_id=$BUILD_ID
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Copy package.json and package-lock.json to the working directory
|
||||
COPY --from=code /repo/testvjsnjs501/testvjsnjs501-front-f/Authsec_vuejs/Authsec_vuejs/package*.json ./
|
||||
|
||||
# Install app dependencies
|
||||
RUN npm install --force
|
||||
RUN npm install --force qrcode
|
||||
RUN npm install --force jsbarcode
|
||||
|
||||
# Copy the entire contents of the Backend directory
|
||||
COPY --from=code /repo/testvjsnjs501/testvjsnjs501-front-f/Authsec_vuejs/Authsec_vuejs .
|
||||
|
||||
# Build the Vue.js application
|
||||
#RUN PUBLIC_URL=http://52.2.133.246:31642/testvjsnjs50132430/front npm run build
|
||||
RUN npm install -g vite
|
||||
RUN vite build --base=http://52.2.133.246:31642/testvjsnjs50132430/front
|
||||
|
||||
# Production stage to serve the built application
|
||||
FROM nginx:alpine
|
||||
LABEL stage=production
|
||||
LABEL build_id=$BUILD_ID
|
||||
|
||||
# Copy the built application from the build stage
|
||||
COPY --from=build /usr/src/app/dist /usr/share/nginx/html
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# Command to run the Nginx server
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
39
sureops/testvjsnjs501-front-f/deployment/build.sh
Executable file
39
sureops/testvjsnjs501-front-f/deployment/build.sh
Executable file
@ -0,0 +1,39 @@
|
||||
#!/bin/bash
|
||||
PRJ_NAME=testvjsnjs501-front-f
|
||||
DOCKER_USER=abdul_1713004506587
|
||||
DOCKER_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
DOCKER_URL=git.cloudnsure.com
|
||||
#********************
|
||||
REPO_NAME=testvjsnjs501
|
||||
GITEA_USER=abdul_1713004506587
|
||||
GITEA_PASS=$(sv get abdul_1713004506587 dockerPassword)
|
||||
GITEA_EMAIL=abdul@dekatc.com
|
||||
GIT_BRANCH=main
|
||||
DOMAIN=git.cloudnsure.com
|
||||
#WEB-URL-PORT
|
||||
CONT_PORT=40010
|
||||
TARGET_PORT=80
|
||||
PATH_DIR=/data/32430_1730720138598/sureops_deploy/testvjsnjs501/sureops/testvjsnjs501-front-f/deployment
|
||||
#**********************
|
||||
cd $PATH_DIR
|
||||
DOCKER_TAG=1.0
|
||||
#docker system prune -f
|
||||
# Stop any existing containers with the same name and ports
|
||||
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||
|
||||
# Build and push the Docker image
|
||||
DOCKER_BUILDKIT=0 docker build --no-cache -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg $GITEA_PASS --build-arg $GITEA_USER .
|
||||
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
docker logout $DOCKER_URL
|
||||
docker system prune -f
|
||||
# Deploy the image in a Docker container
|
||||
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
|
||||
curl -X GET "http://34.198.218.30:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
||||
docker network prune -f
|
||||
docker volume prune -f
|
||||
docker image prune -f --filter "dangling=true"
|
@ -5,10 +5,10 @@ FRONTEND_PORT_9191=30165
|
||||
PORT=9292
|
||||
|
||||
# **** MY SQL DATABASE CONNECTION ****
|
||||
DATABASE_HOST=realnet.cdas4e08uugj.us-east-1.rds.amazonaws.com
|
||||
DATABASE_NAME=realnet_CNSBENEW
|
||||
DATABASE_USERNAME=cnsdev
|
||||
DATABASE_PASSWORD=cnsdev2407
|
||||
DATABASE_HOST=testvjsnjs501-db-d
|
||||
DATABASE_NAME=db
|
||||
DATABASE_USERNAME=root
|
||||
DATABASE_PASSWORD=root
|
||||
DATABASE_PORT=3306
|
||||
|
||||
# **** MAIL SENDER
|
||||
@ -18,4 +18,4 @@ NODEMAILER_PASSWORD=epnmhzsccotnyozf
|
||||
NODEMAILER_PORT=587
|
||||
|
||||
# **** BASEPATH ****
|
||||
BASE_PATH=/baseurl
|
||||
BASE_PATH=/back
|
@ -1,5 +1,4 @@
|
||||
#VITE_APP_API_URL
|
||||
|
||||
|
||||
VITE_APP_API_URL=http://52.2.133.246:31644/back
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user