felicity-lims/notes.txt
Aurthur Musendame b6416f13d0 updated notes
2024-09-14 16:07:43 +02:00

21 lines
1,014 B
Text

// Publish changes to nmrl docker registry
// For every push change and bump the version up
// Server All in one
export $(grep -v '^#' .env | xargs) && sudo docker build -f Dockerfile.prod --target server-aio -t amusendame/felicity-lims:aio-0.1.1 .
docker push amusendame/felicity-lims:aio-0.1.1
// Server API
export $(grep -v '^#' .env | xargs) && sudo docker build -f Dockerfile.prod --target server-api -t amusendame/felicity-lims:api-0.1.1 .
docker push amusendame/felicity-lims:api-0.1.1
// View a summary of image vulnerabilities and recommendations
docker scout quickview
// Build nginx static
export $(grep -v '^#' .env | xargs) && sudo docker build -f Dockerfile.prod --target nginx-static -t amusendame/felicity-static-nginx:0.1.1 .
docker push amusendame/felicity-static-nginx:0.1.1
// Build caddy static
export $(grep -v '^#' .env | xargs) && sudo docker build -f Dockerfile.prod --target caddy-static -t amusendame/felicity-static-caddy:0.1.1 .
docker push amusendame/felicity-static-caddy:0.1.1