Skip to content

Commit e994109

Browse files
authored
Merge pull request #197 from epics-containers/gilesknap-patch-1
Update compose-quickstart.md
2 parents 461f004 + 9daaaf0 commit e994109

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

docs/how-to/compose-quickstart.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,15 @@ Here are some minimal setup instructions to get you up and running with docker-c
55

66
## Docker Already Installed
77

8-
If you have one of the following then you are good to go with no further setup:
9-
10-
- Docker Desktop on Windows WSL2
11-
- Docker Desktop on MacOS
12-
- Any Linux distribution with Docker installed
13-
14-
For WSL2 check: Settings → Resources → WSL integration → ENABLE ... Apply and Restart
8+
If you have any Linux distribution with Docker installed you are all set.
159

1610
(linux-installation)=
1711
## Linux
1812

1913
**Debian Distros**
2014

2115
```bash
16+
sudo apt update
2217
sudo apt install podman docker-compose-v2
2318
```
2419

@@ -28,19 +23,25 @@ sudo apt install podman docker-compose-v2
2823
sudo dnf config-manager --add-repo https://download.docker.com/linux/rhel/docker-ce.repo
2924
sudo dnf install podman docker-compose-plugin
3025
```
31-
26+
(podman-integration)=
3227
**Podman Integration with Docker Compose**
3328

3429
```bash
3530
systemctl enable --user podman.socket --now
3631
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
3732
```
3833

39-
## Windows or MacOS
34+
## Windows
35+
36+
- Install WSL2 with Ubuntu Distro (for systemd)
37+
- Open Ubuntu terminal and follow [](linux-installation)
38+
39+
## Mac OS
4040

41-
- Install podman desktop <https://podman-desktop.io/docs/installation>
42-
- Follow [](linux-installation) above in a WSL2 or Mac terminal
43-
- For Mac, add an X11 server like XQuartz
41+
- brew install podman
42+
- brew install docker-compose
43+
- Follow 'Podman Integration with Docker Compose'
44+
- Add an X11 server like XQuartz
4445

4546
## Docker permissions
4647

0 commit comments

Comments
 (0)