Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m0wer/docker-anki
[UNMAINTAINED] Powerful, intelligent flash cards. Remembering things just became much easier.
https://github.com/m0wer/docker-anki
Last synced: 8 days ago
JSON representation
[UNMAINTAINED] Powerful, intelligent flash cards. Remembering things just became much easier.
- Host: GitHub
- URL: https://github.com/m0wer/docker-anki
- Owner: m0wer
- Created: 2019-10-10T14:03:25.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-25T10:00:21.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T18:14:46.057Z (about 1 month ago)
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [UNMAINTAINED] Anki Docker
[Anki](https://apps.ankiweb.net/index.html) Powerful, intelligent flash cards.
Remembering things just became much easier.This is an unofficial Docker image of it. You can download it directly from
[DockerHub](https://hub.docker.com/r/m0wer/docker-anki).## Example usage
First create the required directories:
```bash
mkdir -p ~/.local/share/Anki
mkdir -p ~/.local/share/Anki2
```Note that they must be owned by your regular unprivileged user. Then:
```bash
docker run --rm -d \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e DISPLAY=$DISPLAY \
--user $(id -u):$(id -g) \
-v ~/.local/share/Anki:/home/anki/.local/share/Anki \
-v ~/.local/share/Anki2:/home/anki/.local/share/Anki2 \
m0wer/docker-anki:latest
```