What is OwnCloud?
OwnCloud is a suite of client-server software for creating file hosting services and using them. OwnCloud is functionally very similar to the widely used Dropbox, with the primary functional difference being that OwnCloud is free and open-source, and thereby allowing anyone to install and operate it without charge on a private server. -https://en.wikipedia.org/wiki/OwnCloud
Installing Docker
- Log into the Linux based device
- Run the following commands in the terminal
# install prerequisites
sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg-agent -y
# add docker gpg key
curl -fsSL https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add -
# add docker software repository
sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release) $(lsb_release -cs) stable"
# install docker
sudo apt install docker-ce docker-compose containerd.io -y
# enable and start docker service
sudo systemctl enable docker && sudo systemctl start docker
# add the current user to the docker group
sudo usermod -aG docker $USER
# reauthenticate for the new group membership to take effect
su - $USER
Running OwnCLoud
- Now that Docker is installed, run the following commands to setup the OwnCloud Docker container and run it
# create working directories
mkdir /home/$USER/docker/mariadb -p && mkdir /home/$USER/docker/owncloud -p
# set owner of working directories
sudo chown "$USER":"$USER" /home/"$USER"/docker -R
# create owncloud network
docker network create owncloud
# run the mariadb docker container
docker run -d --name mariadb --network owncloud --network-alias db -e MYSQL_ROOT_PASSWORD=r00tp@ss -e MYSQL_USER=owncloud_rw -e MYSQL_PASSWORD=OwnCl0ud! -e MYSQL_DATABASE=owncloud -v /home/$USER/docker/mariadb:/var/lib/mysql --restart=unless-stopped mariadb:latest
# run the owncloud docker container
docker run -d --name owncloud --network owncloud -p 8080:80 -v /home/$USER/docker/owncloud:/var/www/html --restart=unless-stopped owncloud:latest - Open a web browser and navigate to http://DNSorIP:8080
- The Owncloud setup screen should be displayed
- Enter a username and password
- Click the storage & database link to expand the section
- Select MySQL and fill out the database connetion information as follows
username: owncloud_rw
password: OwnCl0ud!
database name: owncloud
database host: db - Click Finish Setup
- After a few moments of setup Owncloud will be up and running
- Login with the username and password created a moment ago
Documentation: https://hub.docker.com/_/owncloud