v0.11.1 Modify pipeline to add volums instead of moving files

This commit is contained in:
Murtadha 2024-07-19 17:31:42 -04:00
parent 2ee1066fc3
commit e69adeb013
2 changed files with 58 additions and 59 deletions

View file

@ -1,7 +1,3 @@
# kind: pipeline
# type: docker
# name: frontend-deployment
pipeline: pipeline:
build: build:
image: node:22 image: node:22
@ -39,13 +35,16 @@ pipeline:
script: script:
- cd /home/mnisyif/docker-containers/mnisyif/frontend - cd /home/mnisyif/docker-containers/mnisyif/frontend
- VERSION=$(cat version.txt) - VERSION=$(cat version.txt)
# Build the new Docker image with the current version tag # Build the Docker image (no dist or nginx.conf needed in image)
- docker build -t frontend:$VERSION . - docker build -t frontend:$VERSION .
# Stop and remove the existing container if it exists # Stop and remove the existing container if it exists
- docker stop frontend || true - docker stop frontend || true
- docker rm frontend || true - docker rm frontend || true
# Run the new container with the current version # Run the new container with bind mounts for dist and nginx.conf
- docker run -d --name frontend -p 5173:80 frontend:$VERSION - docker run -d --name frontend -p 5173:80 \
-v /home/mnisyif/docker-containers/mnisyif/frontend/dist:/usr/share/nginx/html \
-v /home/mnisyif/docker-containers/mnisyif/frontend/nginx.conf:/etc/nginx/nginx.conf \
frontend:$VERSION
# Remove dangling images # Remove dangling images
- docker image prune -f - docker image prune -f
# Clean up unused containers, images, and volumes # Clean up unused containers, images, and volumes

View file

@ -1 +1 @@
0.11.0 0.11.1