import docker
def run_docker_command(command):
client = docker.from_env() # Create Docker client
result = None
try:
result = client.api.exec_create(
container='your_container_id', # Replace with container ID
cmd=command, # Specify the Docker command to run
stdout=True,
stderr=True
)
# Start the Docker command
response = client.api.exec_start(exec_id=result['Id'])
# Get the output of the Docker command
output = client.api.exec_inspect(exec_id=result['Id'])
# Print the output
print(output)
except docker.errors.APIError as e:
print(f'Error executing Docker command: {e}')
run_docker_command('docker ps') # Replace with the Docker command you want to run