tmp
Friday, December 25, 2015
Docker Compose File
###build ビルド対象の(Dockerfileが含まれている)ディレクトリを指定 ``` build: ./node-app ``` ###image 作成元のImageを指定 ``` image: node ``` ###ports 公開するportの指定 ``` ports: - "3000" - "80:3000" ``` ###expose 内部で公開するportの指定 ``` expose: - "3000" ``` ###links サービス間のlink ``` links: - mongo ``` ###environment 環境変数の設定 ``` environment: NODE_ENV: production environment: - NODE_ENV=production ``` ##参照 * https://docs.docker.com/compose/compose-file/
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment