Skip to content

Commit aa49c46

Browse files
Merge pull request #67 from Githubguy132010/add-docker-installation-instructions
Add Docker installation instructions to README.md
2 parents 7e93ebf + 0bdb748 commit aa49c46

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,40 @@ If you prefer to build the Arch Linux ISO locally, you can use Docker to set up
2020

2121
Make sure you have Docker installed on your system.
2222

23+
#### Docker Installation
24+
25+
To install Docker, follow the instructions for your operating system:
26+
27+
- **Windows**:
28+
1. Download and install Docker Desktop from [Docker's official website](https://www.docker.com/products/docker-desktop).
29+
2. Follow the installation instructions and start Docker Desktop.
30+
31+
- **macOS**:
32+
1. Download and install Docker Desktop from [Docker's official website](https://www.docker.com/products/docker-desktop).
33+
2. Follow the installation instructions and start Docker Desktop.
34+
35+
- **Linux**:
36+
1. Follow the official Docker installation guide for your distribution:
37+
- [Ubuntu](https://docs.docker.com/engine/install/ubuntu/)
38+
- [Debian](https://docs.docker.com/engine/install/debian/)
39+
- [Fedora](https://docs.docker.com/engine/install/fedora/)
40+
- [CentOS](https://docs.docker.com/engine/install/centos/)
41+
2. Start the Docker service:
42+
```bash
43+
sudo systemctl start docker
44+
sudo systemctl enable docker
45+
```
46+
47+
#### Common Troubleshooting Tips
48+
49+
- **Permission Errors**: If you encounter permission errors, try adding your user to the Docker group:
50+
```bash
51+
sudo usermod -aG docker $USER
52+
newgrp docker
53+
```
54+
55+
- **Network Issues**: Ensure your internet connection is stable. If problems persist, try using a different network or adjusting Docker's network settings.
56+
2357
### Steps to Build Locally
2458
2559
1. **Clone the repository**:

0 commit comments

Comments
 (0)