-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* PMM-12664 Remove the use of the data container * PMM-12664 Fix the GA image name --------- Co-authored-by: Catalina A <[email protected]>
- Loading branch information
1 parent
8bb3568
commit 1a3170f
Showing
13 changed files
with
51 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 12 additions & 15 deletions
27
...tation/docs/install-pmm/install-pmm-server/baremetal/docker/remove_container.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,31 @@ | ||
# Remove container | ||
|
||
??? info "Summary" | ||
|
||
!!! summary alert alert-info "" | ||
- Stop the container. | ||
- Remove (delete) both the server and data containers. | ||
- Remove (delete) both images. | ||
|
||
--- | ||
|
||
!!! caution alert alert-warning "Caution" | ||
These steps delete the PMM Server Docker image and any accumulated PMM metrics data. | ||
|
||
To remove the container: | ||
{.power-number} | ||
|
||
1. Stop pmm-server container. | ||
1. Stop pmm-server container: | ||
|
||
```sh | ||
docker stop pmm-server | ||
``` | ||
|
||
2. Remove containers. | ||
2. Remove the container: | ||
|
||
```sh | ||
docker rm pmm-server | ||
``` | ||
|
||
3. Remove the data volume: | ||
|
||
```sh | ||
docker rm pmm-server pmm-data | ||
docker volume rm pmm-data | ||
``` | ||
|
||
3. Remove the image. | ||
4. Remove the image: | ||
|
||
```sh | ||
docker rmi $(docker images | grep "percona/pmm-server" | awk {'print $3'}) | ||
``` | ||
docker rmi $(docker images | grep "percona/pmm-server" | awk '{print $3}') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 0 additions & 56 deletions
56
...docs/install-pmm/install-pmm-server/baremetal/docker/run_with_data_container.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters