oscarfonts / docker-geoserver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Configure extensions when deploying to EB

joseahr opened this issue · comments

Is it possible to configure the extensions when deploying to Elastic Beanstalk?

Yes, you would need to:

  • Add your extensions to your EBS volume (in an exts directory, for example) (see doc for more info about the extensions directory).
  • Mount your directory containing the extensions in /var/local/geoserver-exts/, in the Dockerrun.aws.json file:
{
  ...
  "Volumes": [
    ...
    {
      "HostDirectory": "/mnt/geoserver/exts",
      "ContainerDirectory": "/var/local/geoserver-exts"
    }
  ]
}