1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Docker】docker-compose.yml以外のファイルを利用してコンテナ環境を作成する

Last updated at Posted at 2021-07-25

概要

docker-composeを利用する際には、基本的にdocker-compose.ymlという名前のファイルを作成し、利用することが一般的。
ただ、複数のdocker-compose.ymlを利用するなど、場合によってはdocker-compose.yml名前以外のファイルを利用したい場合が存在する。
今回は別名で作成したyamlを利用してdocker-composeを利用する方法を記載する

別名のyamlファイルを作成した場合

$ docker-compose -f [別名のyamlファイル][オプション]

今回は例として、sample.yaml という名前のファイルを作成したとする。
内容はdocker-composeと同じで以下の通り、

sample.yaml
version: "2"
services: 
  svelte:
    image: node:lts-alpine
    tty: true
    ports: 
      - 5000:5000
    entrypoint: >
      sleep 86400
$ docker-compose -f sample.yaml up -d
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?