Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

fix typo in docker.go #515

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ecs-init/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func (c *client) LoadImage(image io.Reader) error {
return c.docker.LoadImage(godocker.LoadImageOptions{InputStream: image})
}

// RemoveExistingAgentContainer remvoes any existing container named
// RemoveExistingAgentContainer removes any existing container named
// "ecs-agent" or returns without error if none is found
func (c *client) RemoveExistingAgentContainer() error {
containerToRemove, err := c.findAgentContainer()
Expand Down