Giter VIP home page Giter VIP logo

anki-desktop-docker's Introduction

Anki Desktop

This is a dockerfile for the desktop version of Anki, which is useful for automating anki using addons like Anki-Connect. The app is accessible via a web interface bound to port 3000. The anki configuration is bound to a volume mounted at /config/app in the container.

Docker Compose Examples

Ports Exposed Directly

services: 
  anki-desktop: 
    image: "pnorcross/anki-desktop:latest"
    volumes:
      - /data/apps/anki/config:/config/app
    ports: 
      - 3000:3000
      # Anki Connect port
      - 8765:8765

Proxied through Traefik

services: 
  anki-desktop: 
    image: "pnorcross/anki-desktop:latest"
    networks:
      - TraefikNet
    volumes:
      - /data/apps/anki/config:/config/app
    labels:
      - "traefik.docker.network=TraefikNet"
      - "traefik.enable=true"
      - "traefik.http.routers.anki.entryPoints=https"
      - "traefik.http.routers.anki.tls=true"
      - "traefik.http.routers.anki.service=anki"
      - "traefik.http.services.anki.loadbalancer.server.port=3000"
      - "traefik.http.services.anki.loadbalancer.server.scheme=http"
      - "traefik.http.routers.anki.rule=Host(`anki.example.com`)"
      # Anki Connect port
      - "traefik.http.routers.ankiapi.entryPoints=https"
      - "traefik.http.routers.ankiapi.tls=true"
      - "traefik.http.routers.ankiapi.service=ankiapi"
      - "traefik.http.services.ankiapi.loadbalancer.server.port=8765"
      - "traefik.http.services.ankiapi.loadbalancer.server.scheme=http"
      - "traefik.http.routers.ankiapi.rule=Host(`ankiapi.example.com`)"

      
networks: 
  TraefikNet: 
    external: true

anki-desktop-docker's People

Contributors

pnorcross avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.