Installation¶
The easiest way to get up and running is with Docker Compose. The default option for data storage is in memory. If you would like to persist data beyond container restarts you must set up a Redis instance.
Example configuration¶
Below is a sample docker-compose.yml
that will spin up linktiles and a Redis container for persistence.
docker-compose.yml
services:
linktiles:
image: haumea/linktiles:latest
container_name: linktiles
networks:
- linktiles
ports:
- 5001:5001
environment:
LT_DB_ENGINE: redis
LT_DB_HOST: linktiles-redis
linktiles-redis:
image: redis:latest
container_name: linktiles-redis
networks:
- linktiles
networks:
linktiles:
Run docker compose up -d
and you should be able to visit the UI at http://localhost:5001/.