タグ

Dockerに関するupamuneのブックマーク (83)

  • Dockerの時刻 - Qiita

    # docker run -it --name homma01 centos /bin/bash [root@dcd3aad6428e /]# date Wed Aug 19 15:10:31 UTC 2015 JSTを使用したい やっぱり時刻はJSTにしたい。 2つの方法があるみたいです。 参考情報は、Will docker container auto sync time with the host machine?です。 -v /etc/localtime:/etc/localtime:ro -e "TZ=Asia/Tokyo" /etc/localtimeをマウントする方法

    Dockerの時刻 - Qiita
  • 開発におけるDocker導入のメリット - Qiita

    DockerのPros/Consとか今更感ある。他の仮想化技術との比較記事はよく目にするが、開発にどのようなメリット・デメリットがあるのかあまり周知されていないようなので自分なりの感想を書いておく。 Pros 同一性 複数人で開発する際に、環境の差が生まれない。 カプセル化 アプリケーション込みの環境をコンテナというカプセルに隠蔽することができる。 コンテナという単位に対するテストが可能に。 コンテナを捨てる・再生成するのが容易。 ポータビリティ(一貫性とも) 開発に使ったコンテナをCIでテストできる。 CIでテストしたコンテナをサーバーにデプロイできる。 デプロイしたコンテナをスケールできる。 Prosで防げる消耗 おれの環境では動いた。 はい。 複数の開発者で同一の環境で開発できるので防げる。 ローカルで通ったテストがCIでコケる。 開発と同一の環境でテストできるので防げる。 bund

    開発におけるDocker導入のメリット - Qiita
  • A Docker Tutorial for Beginners

    Learn to build and deploy your distributed applications easily to the cloud with Docker Written and developed by Prakhar Srivastav   Star Introduction What is Docker? Wikipedia defines Docker as an open-source project that automates the deployment of software applications inside containers by providing an additional layer of abstraction and automation of OS-level virtualization on Linux. Wow! Th

    A Docker Tutorial for Beginners