An open API service indexing awesome lists of open source software.

https://github.com/electronsandstuff/personal-server

Applications that run on my personal server
https://github.com/electronsandstuff/personal-server

Last synced: 4 months ago
JSON representation

Applications that run on my personal server

Awesome Lists containing this project

README

          

# Personal Server Applications
This repo is for all applications that will run on my personal server at Digial Ocean (called `dionysus`). It consists of a `docker-compose.yaml` defining the services I want as well as some configuration and some helper scripts.

## Fresh Install
1) Follow the [official Docker documentation](https://docs.docker.com/engine/install/ubuntu/#installation-methods) on installing Docker.
```
# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <