VirtualradarServerをDockerで導入しました。自分メモとして手順を記載します。
以下 導入記録です。
# 対象となるサーバの種別確認
cat /etc/issue
Ubuntu 22.04.2 LTS \n \l
# configファイル保管フォルダ作成
docker inspect vrsconfig
[
{
"CreatedAt": "2023-03-09T16:00:01+09:00",
"Driver": "local",
"Labels": {},
"Mountpoint": "/var/lib/docker/volumes/vrsconfig/_data",
"Name": "vrsconfig",
"Options": {},
"Scope": "local"
}
]
# docker-compose.yml dmp1090やFR24boxのIPアドレスは、192.168.0.100としました。
version: '2.0'
volumes:
vrsconfig:
services:
vrs:
image: mikenye/virtualradarserver
tty: true
container_name: vrs
restart: always
ports:
- 8080:8080
environment:
- USERNAME=vrsadmin
- PASSWORD=very_secure_password_123
- BASESTATIONHOST=192.168.0.100
volumes:
- vrsconfig:/config
# 起動
docker-compose up -d
# 管理画面
<img src="https://s0.wordpress.com/mshots/v1/http%3A%2F%2Fdockerhost%3A8080%2FVirtualRadar%2F?w=100&h=100" alt="" class="blog-card-thumb-image" height="100" width="100" data-eio="l" />http://dockerhost:8080/VirtualRadar/<img src="//www.google.com/s2/favicons?domain=dockerhost" class="blog-card-favicon-img" alt="" width="16" height="16" data-eio="l" />dockerhost<img src="//b.hatena.ne.jp/entry/image/http://dockerhost:8080/VirtualRadar/" alt="" data-eio="l" />
<img src="https://s0.wordpress.com/mshots/v1/http%3A%2F%2Fdockerhost%3A8080%2FVirtualRadar%2FWebAdmin%2FIndex.html?w=100&h=100" alt="" class="blog-card-thumb-image" height="100" width="100" data-eio="l" />http://dockerhost:8080/VirtualRadar/WebAdmin/Index.html<img src="//www.google.com/s2/favicons?domain=dockerhost" class="blog-card-favicon-img" alt="" width="16" height="16" data-eio="l" />dockerhost<img src="//b.hatena.ne.jp/entry/image/http://dockerhost:8080/VirtualRadar/WebAdmin/Index.html" alt="" data-eio="l" />
以上の操作でvrsの導入は完了です
参考にさせていただきました、有益な情報をありがとうございます。