Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mathieu-keller/anki-sync-server

The official rust anki sync server in an unofficial docker image.
https://github.com/mathieu-keller/anki-sync-server

anki server sync

Last synced: about 2 months ago
JSON representation

The official rust anki sync server in an unofficial docker image.

Awesome Lists containing this project

README

        

# anki-sync-server
This is an docker build repo for the Anki sync server from this repo: https://github.com/ankitects/anki/tree/main
Documentation can be found [here](https://docs.ankiweb.net/sync-server.html)

## tl:dr:
```dockerfile
version: "3"
services:
server:
image: afrima/anki-sync-server:24.11
container_name: anki-sync-server
environment:
- SYNC_USER1=test_user_name:test_user_password
- SYNC_PORT=8080
- SYNC_BASE=/data
restart: always
volumes:
- :/data
ports:
- "1337:8080"
```