AMD64
Shell
Git
mkdtravis/testingdocker:.travis.yml@1de508d
os: linux
dist: focal
language: shell
install: skip
script:
- docker build -t test:v1 .
- docker run --name testt test:v1
Build Config
{
"language": "shell",
"os": [
"linux"
],
"dist": "focal",
"install": [
"skip"
],
"script": [
"docker build -t test:v1 .",
"docker run --name testt test:v1"
]
}