Regularly updated multi-arch trilium docker container
2.5K
Trilium is an excellent note taking application with focus on building large personal knowledge bases. Unfortunately, Trilium is not officially available as a docker container for ARM architectures. Although docker images that offer ARM builds exist, they are rarely updated. Hence, the main point of this repository is to 1) have a repository which is regularly updated and 2) transparent in what it contains (no crypto miners). If the original repository ever decides to support ARM, this repository will be archived. If you want more information on Trilium and what you can do with it, check out the original repository.
Docker run:
docker run -d -p 8066:8080 -e TRILIUM_DATA_DIR=/data -v ~/trilium:/data --name trilium hvalev/trilium:latest
docker-compose:
version: "3.8"
services:
trilium:
image: hvalev/trilium:latest
container_name: trilium
environment:
- TRILIUM_DATA_DIR=/data
ports:
- 8066:8080
volumes:
- ~/trilium:/data
restart: always
Content type
Image
Digest
Size
135.9 MB
Last updated
almost 5 years ago
docker pull hvalev/trilium