Skip to content

Alpine Linux Deployment

Basic commands needed to setup Alpine Linux.

First, nano must be installed:

Terminal window
apk add nano

Then, uncomment the community repository:

Terminal window
nano /etc/apk/repositories

Now, update Alpine Package Keeper to use the new repository:

Terminal window
apk update

First, add the docker packages:

Terminal window
apk add docker docker-compose

Now, add it to autostart on boot:

Terminal window
rc-update add docker default

Finally, start the service manually:

Terminal window
service docker start
Terminal window
rc-update add ntpd
service ntpd start