Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoriiis/cloud-box
:whale: Cloud box with Docker, NextCLoud and MariaDB ☁
https://github.com/yoriiis/cloud-box
cloud docker docker-compose mariadb nextcloud nginx-proxy
Last synced: 12 days ago
JSON representation
:whale: Cloud box with Docker, NextCLoud and MariaDB ☁
- Host: GitHub
- URL: https://github.com/yoriiis/cloud-box
- Owner: yoriiis
- License: mit
- Created: 2020-02-16T15:49:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T16:16:26.000Z (almost 5 years ago)
- Last Synced: 2024-10-23T17:18:41.541Z (2 months ago)
- Topics: cloud, docker, docker-compose, mariadb, nextcloud, nginx-proxy
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cloud-box
Runs a suite of services for a full-fledged cloud using Compose. Uses a bunch of a community-built Docker images.
## Services
- [Nginx proxy](https://hub.docker.com/r/jwilder/nginx-proxy/dockerfile)
- [Nextcloud](https://hub.docker.com/_/nextcloud/)
- [Mariadb](https://hub.docker.com/_/mariadb)## Getting started
### Prerequisite and dependencies
Install all dependencies list below on the server:
- [Nginx](https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04-quickstart)
- [Certbot](https://certbot.eff.org)
- [Docker & Docker Compose](https://www.digitalocean.com/community/tutorials/comment-installer-et-utiliser-docker-sur-ubuntu-18-04-fr)
- [GIT](https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-18-04-quickstart)### Clone the repository
Clone the repository on the server in the `home` directory.
### Change permissions
Change permissions of all service directories to add the group `docker`:
```
chown :docker mariadb nextcloud
```### Edit the .env file
By default `.env` file is not versioned, run the following command to duplicate `.env.dist` and fill the file:
```
cp .env.dist .env
```Update corresponding variables:
- `RESTART_MODE` - Docker restart mode
- `TIME_ZONE` - Time zone of containers
- `HOST_NAME` - Domain attach to the server
- `MYSQL_DATABASE` - MySQL database name
- `MYSQL_USER` - MySQL user
- `MYSQL_PASSWORD` - MySQL password
- `MYSQL_ROOT_PASSWORD` - MySQL root passwordLike the following example:
```
RESTART_MODE=unless-stopped
TIME_ZONE=Europe/Paris
HOST_NAME=domain.com
MYSQL_DATABASE=nextcloud
MYSQL_USER=myuser
MYSQL_PASSWORD=mypassword
MYSQL_ROOT_PASSWORD=mysuperpassword
```## Start the Docker Compose 🚀
Simply start all the services with the commands below, which uses the `docker-compose.yml` file by default.
```bash
# -d option let you run containers in the background
docker-compose up -d
```## Licence 🤞
`cloud-box` is licensed under the [MIT License](http://opensource.org/licenses/MIT).
Created with ♥ by [@yoriiis](http://github.com/yoriiis).