30 lines
600 B
YAML
30 lines
600 B
YAML
|
version: "3.3"
|
||
|
|
||
|
services:
|
||
|
|
||
|
cups:
|
||
|
image: olbat/cupsd
|
||
|
volumes:
|
||
|
- /var/run/dbus:/var/run/dbus
|
||
|
- ${VOLUMES_PATH}/cups:/etc/cups
|
||
|
devices:
|
||
|
- /dev/usblp0
|
||
|
privileged: true
|
||
|
network_mode: host
|
||
|
# networks:
|
||
|
# - web
|
||
|
# ports:
|
||
|
# - 631:631
|
||
|
labels:
|
||
|
- "traefik.enable=true"
|
||
|
- "traefik.http.routers.cups.rule=Host(`print.${DOMAIN}`)"
|
||
|
- "traefik.http.routers.cups.entrypoints=web"
|
||
|
- "traefik.http.services.cups.loadbalancer.server.port=631"
|
||
|
- "docker.group=print"
|
||
|
restart: unless-stopped
|
||
|
|
||
|
networks:
|
||
|
web:
|
||
|
external: true
|
||
|
|