DEV Community

Clavin June
Clavin June

Posted on • Originally published at clavinjune.dev on

Passing Hostname To Docker Services

Passing hostname to docker container won’t work

environment:
  - "HOST_HOSTNAME=$HOSTNAME"
Enter fullscreen mode Exit fullscreen mode

Do this instead

environment:
  - "HOST_HOSTNAME={{ .Node.Hostname }}"
Enter fullscreen mode Exit fullscreen mode

It will fetch the hostname from docker placeholder

Reference

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

If you found this post helpful, please leave a ❤️ or a friendly comment below!

Okay