Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marmoroju/docker

Docker e Trivy no ambiente Vagrant
https://github.com/marmoroju/docker

Last synced: 10 days ago
JSON representation

Docker e Trivy no ambiente Vagrant

Awesome Lists containing this project

README

        

# Script para levantar a VM com Docker + Trivy e adicionar o Vagrant ao grupo Docker

## Docker Multistage

```bash
# Dockerfile
# Build da imagem

docker image build -t app-go:1.0 .
```

```bash
# Executando a imagem
docker container run -ti --name meu-go app-go:1.0
```