Eggdrop for Docker: Difference between revisions

From EggWiki
Jump to navigation Jump to search
(Created page with "Information and documentation for the Eggdrop Docker image can be found at [https://hub.docker.com/_/eggdrop]. == Setting a Vhost with Docker == We're still trying to figure out the best way to do this! One method we've found is to set the following options in your docker-compose config file: <pre> networks: default: driver: bridge ipam: driver: default driver_opts: com.docker.network.host_ipv4: <ip here> </pre> Importantly, do not set the vh...")
 
No edit summary
Line 1: Line 1:
Information and documentation for the Eggdrop Docker image can be found at [https://hub.docker.com/_/eggdrop].
Information and documentation for the Eggdrop Docker image can be found at [https://hub.docker.com/_/eggdrop https://hub.docker.com/_/eggdrop].


== Setting a Vhost with Docker ==
== Setting a Vhost with Docker ==

Revision as of 22:59, 9 April 2024

Information and documentation for the Eggdrop Docker image can be found at https://hub.docker.com/_/eggdrop.

Setting a Vhost with Docker

We're still trying to figure out the best way to do this! One method we've found is to set the following options in your docker-compose config file:

networks:
  default:
    driver: bridge
    ipam:
      driver: default
    driver_opts:
      com.docker.network.host_ipv4: <ip here>

Importantly, do not set the vhost4 setting in the config if you use this method.

Also importantly, there are still some to-be-determined side effects for using this method, but this will atleast get you online using the vhost of your choice