How do I add another domain to an existing docker site?

Trying to figure out how to pull off the typical bench setup add-domain domain —site <site-name>.

I’m getting a 404 error on the extra domain after doing the following:

  • added the domain to site config
  • added the extra domain to erpnext-one.env (SITES=`working-domain.app`, `www.domain.app`)
  • generated a new erpnext-one.yaml
  • compose up

my site config:

{
 "db_name": "_name",
 "db_password": "db_password",
 "db_type": "mariadb",
 "domains": [
  "www.domain.app"
 ],
 "encryption_key": "encryption_key",
 "user_type_doctype_limit": {
  "employee_self_service": 30
 }
}

yes i’m also trying to setup this i don’t know is it the problem in docker or standalone setup also, will post once confirmed

1 Like

What else have you tried so far?