VS CodeのRemote-ContainersでPlant UMLのコンテナ環境を作る
やりたいこと
UMLのサーバーをDockerで構築して,VS Codeの拡張機能を使って編集したい!Remote-Containersを使って簡単に環境構築出来たらうれしいな!
環境
- Visual Studio Code
- 拡張機能
Remote-Containers
を入れておく
- 拡張機能
Plant UML
はコンテナの中に入るときにコンテナ内に導入される
- Docker
必要なファイルの用意
ディレクトリ構成
(root)
│
├─ test.pu
│
└─.devcontainer
devcontainer.json
docker-compose.yml
環境設定のファイルの中身
devcontainer.json
{
"name": "dev container",
"dockerComposeFile": "docker-compose.yml",
"service": "plantuml-server",
"workspaceFolder": "/workspace/",
"extensions": [
"jebbs.plantuml",
]
}
docker-compose.yml
version: '3'
services:
plantuml-server:
image: plantuml/plantuml-server
container_name: plantuml-container
ports:
- "8080:8080"
volumes:
- ..:/workspace:cached
テスト用のUMLファイル
test.pu
@startuml sample
alice -> Bob: Hello, John!
alice <-- Bob: Hello, World!
@enduml
実行する
- コマンドパレット
Remote-Containers: Rebuild and Reopen in container
からコンテナの中に入る
- エディタで
test.pu
を開く
- コマンドパレット
PlantUML: Preview Current Diagram
を実行
- プレビューが表示される
参考資料
- 拡張機能
Remote-Containers
を入れておく - 拡張機能
Plant UML
はコンテナの中に入るときにコンテナ内に導入される
ディレクトリ構成
(root)
│
├─ test.pu
│
└─.devcontainer
devcontainer.json
docker-compose.yml
環境設定のファイルの中身
devcontainer.json
{
"name": "dev container",
"dockerComposeFile": "docker-compose.yml",
"service": "plantuml-server",
"workspaceFolder": "/workspace/",
"extensions": [
"jebbs.plantuml",
]
}
docker-compose.yml
version: '3'
services:
plantuml-server:
image: plantuml/plantuml-server
container_name: plantuml-container
ports:
- "8080:8080"
volumes:
- ..:/workspace:cached
テスト用のUMLファイル
test.pu
@startuml sample
alice -> Bob: Hello, John!
alice <-- Bob: Hello, World!
@enduml
実行する
- コマンドパレット
Remote-Containers: Rebuild and Reopen in container
からコンテナの中に入る
- エディタで
test.pu
を開く
- コマンドパレット
PlantUML: Preview Current Diagram
を実行
- プレビューが表示される
参考資料
Remote-Containers: Rebuild and Reopen in container
からコンテナの中に入るtest.pu
を開くPlantUML: Preview Current Diagram
を実行Author And Source
この問題について(VS CodeのRemote-ContainersでPlant UMLのコンテナ環境を作る), 我々は、より多くの情報をここで見つけました https://qiita.com/Mizu49/items/eb6eeb153eda16606e28著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .