Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mathieu-keller/anki-sync-server
- Owner: mathieu-keller
- Created: 2024-03-29T15:45:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T02:29:21.000Z (9 months ago)
- Last Synced: 2024-05-30T16:28:37.922Z (9 months ago)
- Topics: anki, server, sync
- Language: Dockerfile
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
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"
```