DEV Community

kgoedert
kgoedert

Posted on

4

Edit docker /etc/hosts

If you ever need to edit the /etc/hosts of your docker container, using the docker compose, you can use the extra_hosts.

wildfly:
    build: wildfly
    ports:
      - "8080:8080"
      - "8787:8787"
    extra_hosts:
      - "first:162.0.1.5"
      - "secondhost:1.1.1.1"

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay