main
beech 1 year ago
parent 9173d6e20d
commit f5cb598ff9
  1. 15
      README.md
  2. 2
      setup.sh

@ -1,3 +1,16 @@
# Alpine-Config # Alpine-Config
Quick configuration for Alpine Linux. Setting up docker & community repository. Quick configuration for Alpine Linux. Setting up docker & community repository.
---
```bash
# Install Curl
doas apk update
doas apk add curl
# Download & Run Script
curl https://git.merlinslair.net/beech/Alpine-Config/raw/branch/main/setup.sh -o setup.sh
chmod +x setup.sh
sh setup.sh
```

@ -1,9 +1,11 @@
#!/usr/bin/env bash #!/usr/bin/env bash
echo "Enabling Community Repository..." echo "Enabling Community Repository..."
echo "Enter Root Password."
su -c 'echo "http://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories' su -c 'echo "http://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories'
echo "Enabled. Updating & Installing Docker" echo "Enabled. Updating & Installing Docker"
echo "Enter User Password."
doas apk update doas apk update
doas apk add docker doas apk add docker
doas apk add docker-cli-compose doas apk add docker-cli-compose

Loading…
Cancel
Save