Maintained by: PilotFish Technology, LLC
Where to get help: PilotFish Technology CMS
Docker Images: Docker Hub
Source: GitHub
Dockerfile linksPilotFish’s eiDashboard UI delivers multi-dimensional operational insight for greatly reduced downtime and issue resolution on the fly. Users get to view interface activity, from high-level message orchestrations all the way down to discrete operations. Developers gain access to fix issues on the fly. Business users are provided with the kind of operational detail that enables them to troubleshoot and resolve issues at a greater speed, and far more efficiently than was previously possible.
www.pilotfishtechnology.com/interface-reporting-management-dashboard/

docker-compose (Recommended)Install Docker
Clone the main branch of the repository
cd /opt
git clone https://github.com/pilotfishtechnology/eidashboard_docker_compose_example
cd eidashboard_docker_compose_example
Log in to the Customer Portal and download your latest license file.
Convert your license file to a base64 encoded string (echo "$(cat pflicense.key | base64)") and copy the base64 encoded string into the PFISH_EIP_CONF_com_pilotfish_eip_license_base64 environment variable located in the docker-compose.yml
Bring up your stack by running
docker-compose up -d
When your docker container is running, connect to it on port 8080 to access the eidashboard instance.
http://127.0.0.1:8080/dashboard/
Install Docker
Clone the main branch of the repository
cd /opt
git clone https://github.com/pilotfishtechnology/eidashboard_quick_start
cd eidashboard_quick_start
Log in to the Customer Portal and download your latest license file.
Copy in your license file (/license/pflicense.key).
Bring up your stack by running
docker network create eidashboard-network
docker run -it -d --name postgres \
-v $(pwd)/db-data:/var/lib/postgresql/data \
--env-file ./.env \
--network=eidashboard-network \
pilotfishtechnology/postgres:latest
docker run -it -d --name eidashboard \
-v $(pwd)/logs:/opt/pilotfish/logs \
-v $(pwd)/license:/opt/pilotfish/license \
-v $(pwd)/config:/opt/pilotfish/config \
-p 8080:8080 \
--env-file ./.env \
--network=eidashboard-network \
pilotfishtechnology/eidashboard:latest
When your docker container is running, connect to it on port 8080 to access the eiDashboard instance.
http://127.0.0.1:8080/dashboard/
DockerfileInstall Docker
Clone the main branch of the repository
cd /opt
git clone https://github.com/pilotfishtechnology/eidashboard_docker_example
cd eidashboard_docker_example
Log in to the Customer Portal and download your latest license file.
Copy in your license file (/license/pflicense.key).
Build the container
docker build -t my-custom-eidashboard-app .
Bring up your stack by running
docker network create eidashboard-network
docker run -it -d --name postgres \
-v $(pwd)/db-data:/var/lib/postgresql/data \
--env-file ./.env \
--network=eidashboard-network \
pilotfishtechnology/postgres:latest
docker run -it -d --name eidashboard \
-v $(pwd)/logs:/opt/pilotfish/logs \
-v $(pwd)/license:/opt/pilotfish/license \
-v $(pwd)/config:/opt/pilotfish/config \
-p 8080:8080 \
--env-file ./.env \
--network=eidashboard-network \
my-custom-eidashboard-app
When your docker container is running, connect to it on port 8080 to access the eidashboard instance.
http://127.0.0.1:8080/dashboard/
/opt/pilotfish/eip-root - eiPlatform Routes folder
/opt/pilotfish/config - eiPlatform Config folder
/opt/pilotfish/license - eiPlatform License folder
/opt/pilotfish/logs - eiPlatform Logs folder
Content type
Image
Digest
sha256:1eaa6fc9b…
Size
559.5 MB
Last updated
9 days ago
docker pull pilotfishtechnology/eidashboard