...
- Dockerが実行されていることを確認します。
次のテキストをコピーし、任意のテキストエディターに貼り付けます。
Code Block theme Eclipse version: '3' services: yellowfin-all-in-one: ports: - "8080:8080" # Maps Yellowfin running on port 8080 to the host's port 8080 environment: - APP_MEMORY=4096 # The amount of memory in megabytes to assign to the Yellowfin Application. image: "yellowfinbi/yellowfin-all-in-one:<RELEASE_VERSION_GOES_HERE>"
- <RELEASE_VERSION_GOES_HERE>を、使用するリリースのバージョンに更新します (例: 9.6.0)。
- テキストをyellowfin-all-in-one.ymlと呼ばれるYAML ファイルに保存します。
- Yellowfinを導入するためにターミナルから次のコマンドを実行し、バックグラウンドで実行します。
docker-compose up -d -f yellowfin-all-in-one.yml - ホストURLを8080ポートで入力し、Yellowfinを起動します。
...