mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
e362c26fc1
* docs: improve and organize docs * docs: improve setup options
14 lines
342 B
Markdown
14 lines
342 B
Markdown
Add following to frappe container from the `.devcontainer/docker-compose.yml`:
|
|
|
|
```yaml
|
|
...
|
|
frappe:
|
|
...
|
|
extra_hosts:
|
|
app1.localhost: 172.17.0.1
|
|
app2.localhost: 172.17.0.1
|
|
...
|
|
```
|
|
|
|
This is makes the domain names `app1.localhost` and `app2.localhost` connect to docker host and connect to services running on `localhost`.
|