What is the equivalent of -h in docker-compose?
问题 I want convert docker run to docker-compose with -h parameter What is the equivalent of -h in docker-compose ? My docker run command: docker run --rm -p 8080:80/tcp -p 1935:1935 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h webinar.mydomain.com My docker-compose version: "3" services: bigbluebutton: build: . container_name: "bigbluebutton" restart: unless-stopped ports: - 1935:1935 - 3478:3478 - 3478:3478/udp - 8080:80 networks: public: networks: public: external: name: public 回答1: