/docker-repetier-server

Repetier Server in a Docker. This is a mirror of:

Primary LanguageDockerfile

⚠️ repo moved ⚠️

This repo is no loger active. The image was moved to LuckyTurtleDev/docker-images.

docker-repetier-server

Repetier Server from repetier-server.com in a Docker based on Debian.

Summary

  • Peristant data are located in /data. You can either use a bind-mount or create a volume.
  • Port 3344 is the exposed port for the Web UI
  • USB printers should be forwarded with --device argument

Usage

docker-compose:

version: "3.4"
services:
    repetier-server:
        image: registry.gitlab.com/luckyturtledev/docker-repetier-server:latest
        container_name: repetier-server
        ports:
            - '80:3344'
        volumes:
            - './data:/data'
        devices:
            - /dev/ttyUSB0
        restart: unless-stopped

You may need to mount a different device to the container, as example /dev/ttyUSB1 or /dev/ttyACM0. You can list the device with ls /dev/tty* before connecting your printer and run the command after connecting it again to find the right device. The device, which is listed additionally, is your printer.