Install FLECS Core With Docker Compose

For users familiar with Docker, FLECS can be installed directly using Docker images. This method is ideal for those who prefer containerized environments and have Docker and Docker Compose installed on their system.

Prerequisites for Docker Compose Installation

  • Docker installed on your system (version 20.10.5 or higher).

  • Docker Compose installed on your system (version 2.0.0 or higher, i.e. any version of the go rewrite)

  • Ensure that your system is compatible with Docker and has internet access to pull images.

Installation

Create a docker-compose.yml file with the following content:

services:
  flecs:
    image: flecspublic.azurecr.io/flecs/filip:latest
    restart: always
    network_mode: host
    volumes:
      - /run/docker.sock:/var/run/docker.sock
    environment:
      VERSION_CORE: latest
      VERSION_WEBAPP: latest

Then, deploy FLECS by running:

Last updated

Was this helpful?