Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit eddd628

Browse files
authored
update ce-dev docs (#62)
1 parent 42ea5e3 commit eddd628

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ That should open https://www.hello.local in a new browser's tab, with a fresh Dr
6969
```
7070
ce-dev shell
7171
```
72-
Will open a shell in the 'web' container. You can then `cd ~/deploy/live.local` and run a `drush uli` to grab a login link.
72+
Will open a shell in the 'web' container. You can then `cd ~/deploy/live.local` and run a `vendor/drush/drush/drush uli` to grab a login link.

docs/Troubleshooting.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,23 @@ sudo update-initramfs -c -k all
2424
```
2525

2626
They will take a while to run (about 10 minutes), but once complete reboot your machine and delete any created containers that velong to the ce_dev image. When you rebuild the ce-dev controller (by running any command) it should create fine.
27+
28+
## VM Networking issue
29+
If you're running ce-dev from within a Virtual Machine (eg. KVM/qemu), Docker container network ports are only 'exposed' to the hypervisor (ie the VM), and are not published for external access.
30+
In order to access sites/files deployed by ce-dev, the ports needs to be published so that the Docker containers can be accessed from your workstation.
31+
After running ```ce-dev init``` (before ```ce-dev start```) edit the ~/project/ce-dev/docker-compose.yml
32+
33+
Replace;
34+
```
35+
expose:
36+
- 443
37+
- 80
38+
- '22'
39+
```
40+
With;
41+
```
42+
ports:
43+
- '443:443'
44+
- '80:80'
45+
- '22'
46+
```

0 commit comments

Comments
 (0)