mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-14 13:13:27 +01:00
traefik #2
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DragonHeart69 on GitHub (Jan 16, 2025).
For those using traefik with labels in the docker compose file, I found the problem that traefik forwards to 2 ip's.
1 of wygiwyh_server and the other from wygiwyh_procrastinate.
After 4h of searching I just discovered this and knew that the problem was with web: &django & <<: *django.
Personally, I have never used this kind of reference before, but I came up with a solution anyway.
I want to post it here so others don't have to search for so long.
Add
labels: [ ]inside the procrastinate part of the docker-compose.@eitchtee commented on GitHub (Jan 16, 2025):
The & and << are meant to copy the web service directives to procrastinate, as they use the same image. The labels were probably being copied to procrastinate and causing problems.
It's saving me exactly one line of code, so I will remove it. Thank you.