-
Notifications
You must be signed in to change notification settings - Fork 0
/
anotacoes-dockerhub.txt
51 lines (30 loc) · 1.26 KB
/
anotacoes-dockerhub.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
- Gerar imagens docker do codigo
mvn spring-boot:build-image
- Enviar imagem para o docker hub (docker tag local-image:tagname new-repo:tagname)
--Criar repositorio na interface do docker hub
--Logar no docker por linha de comando
docker login -u "matheustf" -p "senha" docker.io
docker tag avaliacao:0.0.1-SNAPSHOT matheustf/mba-avaliacao:v1
docker push matheustf/mba-avaliacao:v1
- Remover todas as imagens locais
docker rmi $(docker images -a -q)
-Forçar remoção da imagem
docker rmi -f mba-avaliacao:v1
- Sequecia para limpar
docker kill $(docker ps -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)
- Entrar em um container
winpty docker exec -it 72164f857007 bash
-Entrar no container e executar o ping
docker exec -it 72164f857007 ping another
-Passos para gerar a imagem no docker hub
mvn spring-boot:build-image
docker tag avaliacao:0.0.1-SNAPSHOT matheustf/mba-avaliacao:v9
docker push matheustf/mba-avaliacao:v9
mvn spring-boot:build-image
docker tag emailserver:0.0.1-SNAPSHOT matheustf/mba-emailserver:v2
docker push matheustf/mba-emailserver:v2
mvn spring-boot:build-image
docker tag eurekaserver:0.0.1-SNAPSHOT matheustf/mba-eurekaserver:v2
docker push matheustf/mba-eurekaserver:v2