Lately, we have experimented with building Docker images for Rootspace with Docker buildx and bake since there is a great need to support multiple architectures.
It is a significant improvements to the Docker build process as you create a build file definition and just invoke the build process.
To start the project locally please follow the steps below.
- Clone the project
git clone git@github.com:clearview/rootspace.git
- Build the images locally
docker buildx bake local --load
- Check if the images have been built
docker image ls | grep root
- Copy the .env files
cp .env.example .env && cp api/.env.example api/.env && cp web/.env.example web/.env
- Start the docker-compose local version
docker compose -f docker-compose.yml -f docker-compose-local.yml up --force-recreate
The project should be up.
Top comments (0)