[Docker] Docker Compose 로 Ubuntu 올리기
Cloud&Container/IaC 2020. 4. 1. 20:41docker-compose.yml)
version: '3.7'
services:
ubuntu-mac:
image: ubuntu:18.04
container_name: ubuntu-mac
stdin_open: true
tty: true
command: [/bin/bash]
or
$ docker run --rm --name ubuntu-mac -ti ubuntu:18.04 /bin/bash