Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 595 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 595 Bytes

ansible-docker

nodesource/node

OS: CentOS 7
モジュール: Ansible latest

セットアップコマンド

# イメージ作成
$ docker build -t ansible-docker:latest ./

# コンテナ作成 & ログイン
$ docker run --name ansible-container -it ansible-docker bash

# 起動中のコンテナにログイン
$ docker exec -it ansible-container bash

# コンテナの起動
$ docker start ansible-container

# コンテナの停止
$ docker stop ansible-container