diff --git a/docker-compose.yml b/docker-compose.yml
index 060fd130e9..57268f0156 100644
a
|
b
|
services: |
51 | 51 | depends_on: |
52 | 52 | - mysql |
53 | 53 | |
| 54 | extra_hosts: |
| 55 | - localhost:host-gateway |
| 56 | |
54 | 57 | ## |
55 | 58 | # The MySQL container. |
56 | 59 | ## |
… |
… |
services: |
94 | 97 | # The init directive ensures the command runs with a PID > 1, so Ctrl+C works correctly. |
95 | 98 | init: true |
96 | 99 | |
| 100 | extra_hosts: |
| 101 | - localhost:host-gateway |
| 102 | |
97 | 103 | volumes: |
98 | 104 | # So that sites aren't wiped every time containers are restarted, MySQL uses a persistent volume. |
99 | 105 | mysql: {} |