Posted On July 11, 2019

Docker: Update Startup Policy for Running Containers

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Docker: Update Startup Policy for Running Containers
# Update only 1 container by name (instead of ID)
docker update --restart=always kimconnect
# View existing container IDs
docker ps -q
6c65da0f8c1d
4a91a766b3db
f9b235680fa2
# View containers by names and statuses
docker ps --all --format "table {{.Names}}\t{{.Status}}\t{{.RunningFor}}"
NAMES STATUS CREATED
shellinabox Exited (137) 18 minutes ago 4 weeks ago
kimconnect Up 17 minutes 3 months ago
openproject Exited (137) 4 weeks ago 4 months ago
mysql-server Up 23 minutes (healthy) 4 months ago
blog Exited (0) 4 weeks ago 4 months ago
alpine Exited (137) 4 months ago 4 months ago
portainer Up 23 minutes 4 months ago
# Update restart policies for all currently running containers
docker update --restart=always $(docker ps -q)
6c65da0f8c1d
4a91a766b3db
f9b235680fa2

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Kubernetes – Pausing Applications by Scaling Deployments or Stateful Sets

# Pause application kubectl scale deploy nextcloud --replicas=0 kubectl scale statefulsets nextcloud-db-postgresql --replicas=0 kubectl scale…

VMWare Deployment Overview

1. Configure VMWare ESXi- If dedicated storage card(s) is/are available, configure LACP/PAGP etherchannel or bond…

VMWare: Provisioning New Guest Virtual Machines

Overview: The process of provisioning a guest virtual machine (VM) template in a cluster follows…