Docker image of Lemmy, a link aggregator and forum for the fediverse.
- Runs Lemmy inside a Docker container
- Provides a link aggregator and forum for the Fediverse
- Supports ActivityPub federation with other Lemmy instances
- Supports a custom
config.hjsonconfiguration file - Works on both AMD64 and ARM64 systems
services:
lemmy:
image: dockurr/lemmy
container_name: lemmy
environment:
RUST_LOG: "warn"
ports:
- 8536:8536
volumes:
- ./lemmy.hjson:/config/config.hjson
restart: always
stop_grace_period: 1mdocker run -it --rm --name lemmy -p 8536:8536 -v "./lemmy.hjson:/config/config.hjson" --stop-timeout 60 docker.io/dockurr/lemmy