37 lines
1.6 KiB
Plaintext
37 lines
1.6 KiB
Plaintext
#######################################################################################################################################################
|
|
Docker commands:
|
|
*****************
|
|
|
|
Create image:
|
|
--from solution folder:
|
|
docker image build -t "network-resurrector-frontend:1.0.0" .
|
|
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t "tstanciu/sta-registry:network-resurrector-frontend-1.0.0-arm32v7" --push .
|
|
|
|
Run image:
|
|
docker run -p 5053:80 -it network-resurrector-frontend:1.0.0
|
|
|
|
Push image to registry:
|
|
--tag image
|
|
docker tag network-resurrector-frontend:1.0.0 alpine-nexus:8500/network-resurrector/network-resurrector-frontend:1.0.0
|
|
|
|
--login to registry
|
|
docker login --username=admin --password="***REMOVED***" alpine-nexus:8500
|
|
|
|
--push image
|
|
docker push alpine-nexus:8500/network-resurrector/network-resurrector-frontend:1.0.0
|
|
|
|
Pull image from registry
|
|
--login to registry
|
|
|
|
--pull image
|
|
docker pull alpine-nexus:8500/network-resurrector/network-resurrector-frontend:1.0.0
|
|
|
|
Run container in prod env
|
|
docker run -d --name network-resurrector-frontend --restart=always -p 5009:80 alpine-nexus:8500/network-resurrector/network-resurrector-frontend:1.0.0
|
|
|
|
Rename container
|
|
docker rename <container_id> network-resurrector-frontend
|
|
#######################################################################################################################################################
|
|
|
|
Docker container last version: 1.0.0
|
|
####################################################################################################################################################### |