Replies: 3 comments
-
That message is just generic message it's unrelated to actual network setup |
Beta Was this translation helpful? Give feedback.
0 replies
-
well it just works when I add ports on my docker-compose.yaml version: '3.3'
services:
stirling-pdf:
image: frooodle/s-pdf:latest
restart: unless-stopped
ports:
- 8888:8080
labels:
- "traefik.enable=true"
- "traefik.http.routers.pdf.rule=Host(`pdf.my-host.com`)"
- "traefik.http.routers.pdf.entrypoints=websecure"
- "traefik.http.services.pdf.loadbalancer.server.port=8080"
- "traefik.http.routers.pdf.tls.certresolver=cloudflare"
networks:
- proxy
volumes:
- $HOME_HOST/apps/stirling-pdf/trainingData:/usr/share/tessdata
- $HOME_HOST/apps/stirling-pdf/extraConfigs:/configs
# - ./customFiles:/customFiles/
# - ./logs:/logs/
environment:
- DOCKER_ENABLE_SECURITY=true
- INSTALL_BOOK_AND_ADVANCED_HTML_OPS=true
- LANGS=pt_BR
networks:
proxy:
external: true when I access via host: 192.168.x.x:8888 -> it works |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sorry .... I just realized that it was a miss config in my dns configs 😄 now it is working, thank you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello guys I am trying to configure traefik, But as I can see it just accept connection via localhost
is it possible to change to
0.0.0.0:8080
?Beta Was this translation helpful? Give feedback.
All reactions