Sign inSign up

lukas1818/repetier-server

By lukas1818

Updated almost 3 years ago

multiplatform image for the Repetier Server 3d printer server

Image
0

2.6K

lukas1818/repetier-server repository overview

source pipeline vulnerability dockerhub version

⚠️ repo moved ⚠️

This repo is no loger active. The image was moved to github.com/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.

Tag summary

Content type

Image

Digest

sha256:8dc39d833

Size

81.1 MB

Last updated

almost 3 years ago

docker pull lukas1818/repetier-server