Create a new folder
mkdir IADBE_ALL
cd IADBE_ALL
Clone project
# clone IADBE core
git clone https://github.com/cjy513203427/IADBE.git
# clone IADBE server
git clone https://github.com/cjy513203427/IADBE_Server.git
# clone IADBE frontend
git clone https://github.com/cjy513203427/IADBE_Frontend.git
Copy docker-compose.yml here.
cp IADBE/docker-compose.yml ./
So, the file structure should look like this:
├── IADBE_ALL
│ ├── docker-compose.yml
│ ├── IADBE
│ ├── IADBE_Frontend
│ └── IADBE_Server
Build docker images with docker-compose.yml
docker-compose up --build -d
Till now you should be able to access IADBE system.
- IADBE Server: http://localhost:8080/api/xxx
- IADBE Frontend: http://localhost:4200/
- IADBE: Set as a dev env (Recommended) or train directly in container.
Stop running container
docker-compose down