: Docker Container Start/Stop Commands (Linux)
Focus
Focus

Docker Container Start/Stop Commands (Linux)

Table of Contents

Docker Container Start/Stop Commands (Linux)

The container ID shown below is an EXAMPLE only. The container ID will be different on different systems or will change on the same system if removed/reinstalled.
Verifying Container Running Status
root@ubuntu:/# docker psCONTAINER ID IMAGE COMMAND CREATEDSTATUS PORTS NAMES42f39ad5623b cloudgenix/prisma_access_panorama:2.1.1 "./prisma_access_int…" 23hours ago Up 5 seconds prisma_access_panoramaroot@ubuntu:/#
Stopping the Prisma Access Container
root@ubuntu:# docker stop 42f39ad5623b42f39ad5623broot@ubuntu:/ # 42f39ad5623b
Verifying Finding Prisma Access Container Name If Stopped
root@ubuntu:# docker psCONTAINER ID IMAGE COMMAND CREATED STATUSPORTS NAMESroot@ubuntu:/#
root@ubuntu:/# docker ps -aCONTAINER ID IMAGE COMMAND CREATEDSTATUS PORTS NAMES42f39ad5623b cloudgenix/prisma_access_panorama:2.1.1 "./prisma_access_int…" 23hours ago Exited (137) 22 hours ago prisma_access_panorama
Starting the Prisma Access Docker Container
root@ubuntu:/# docker start 42f39ad5623b42f39ad5623broot@ubuntu:/# CONTAINER

Recommended For You