Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 745 Bytes

File metadata and controls

30 lines (25 loc) · 745 Bytes

web2dymo-docker - Dymo Label Printer Webinterface for Docker

Docker Image with PHP and CUPS for printing on Dymo Labelprinters connected to a network print server.

Usage

Example docker-compose configuration:

version: "3"

services:
  app:
    build:
      context: ./app
    restart: unless-stopped
    volumes: 
      - "./data/web:/var/www/html"
    ports: 
      - 80:80
    environment:
      PRINTER1_ENABLE: 1
      PRINTER1_NAME: dymo450
      PRINTER1_DEVURI: socket://url.to.print.server:9100
      PRINTER1_PPDFILE: /usr/share/cups/model/lw450.ppd
      PRINTER2_ENABLE: 1
      PRINTER2_NAME: dymo320
      PRINTER2_DEVURI: socket://url.to.print.server:9101
      PRINTER2_PPDFILE: /usr/share/cups/model/lw320.ppd