Installation
This page will guide you through the installation the application using Docker.
Table of Contents
Prerequisites
Before you begin, ensure you have the following installed on your system:
- Docker
- Docker Compose (for Docker Compose installation)
- A modern web browser (e.g., Chrome, Firefox, Edge)
Installation
Using Docker
-
Pull the Docker Image
Open your terminal and pull the s-elBat Docker image from the Docker Hub:
docker pull mantistable/mantistable-ui:latest
-
Run the Docker Container
Start the Docker container using the following command:
docker run -d -p 8080:80 --name selbat mantistable/mantistable-ui:latest
This command will run the MantisTable UI container in detached mode and map port 80 of the container to port 8080 on your host machine.
-
Access the Application
Open your web browser and navigate to
http://localhost:8080
to access the MantisTable UI.
Using Docker Compose
-
Create a
docker-compose.yml
FileCreate a
docker-compose.yml
file in your project directory with the following content:version: '3'
services:
mantistable-ui:
image: mantistable/mantistable-ui:latest
ports:
- "8080:80" -
Start the Docker Compose Services
In the terminal, navigate to your project directory and run:
docker-compose up -d
This command will start the MantisTable UI service in detached mode.
-
Access the Application
Open your web browser and navigate to
http://localhost:8080
to access the MantisTable UI.