Welcome to Concierge! This guide will help you install Docker Desktop and set up the project on your machine. Follow the steps below to get everything up and running.
Before setting up the project, make sure you have the following installed:
Docker Desktop is required to run our project using containers. Follow the instructions based on your operating system
- Visit the Docker Desktop download page.
- Click Get Docker and download the executable file for Windows.
- Run the installer and follow the instructions:
- Agree to the license terms.
- Ensure the option to enable WSL 2 is selected for Windows 10/11.
- After installation, launch Docker Desktop from the Start menu.
- Then launch the Docker Engine!
(See here on more details to add a microservice to our project)
To get the app up and running follow these instructions below:
-
Open terminal and set directory to
Concierge/docker-compose -
Run this command to build our project
docker compose -f ./docker-compose/docker-compose.yaml build -
Then once that has been completed, run this command to start project:
docker compose -f ./docker-compose/docker-compose.yaml up -
Open browser and head to:
localhost:8081
- Any three digit integer is valid for a room code
localhost:8082
- Use these details to login
- Username: admin
- Password: admin
-
Once finished, run this command to halt project:
docker compose -f ./docker-compose/docker-compose.yaml down