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
- Host: GitHub
- URL: https://github.com/electronsandstuff/personal-server
- Owner: electronsandstuff
- Created: 2023-02-19T06:46:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-12-24T18:06:15.000Z (5 months ago)
- Last Synced: 2025-12-26T07:34:08.864Z (5 months ago)
- Language: Shell
- Homepage:
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 <