This Repository holds the platform configuration for the homeserver
Find a file
Lukas Gysin 227796403a
feat: Open Port for Minecraft
Signed-off-by: Lukas Gysin <L.Gysin@pm.me>
2025-11-11 00:11:22 +01:00
config feat: Open Port for Minecraft 2025-11-11 00:11:22 +01:00
.env.example feat: Copy running config 2025-11-10 18:23:28 +01:00
.gitignore feat: Copy running config 2025-11-10 18:23:28 +01:00
CODE_OF_CONDUCT Initial commit 2025-11-10 18:09:34 +01:00
docker-compose.yml feat: Open Port for Minecraft 2025-11-11 00:11:22 +01:00
LICENSE Initial commit 2025-11-10 18:09:34 +01:00
README.md feat: Copy running config 2025-11-10 18:23:28 +01:00

platform

This Repository holds the platform configuration for the homeserver

Getting Started

These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Requirements for the software and other tools to build, test and push

Supported IDEs

You can use the IDE of your choice to continue developing the project. However, the following IDEs are recommended and officially supported:

Secret Management

Sensitive data is stored in a .env file. An empty example of the structure can be found in .env.example

Development

This repository is a full functional docker compose application stack. Therefore, you can use the terminal to deploy a development instance on your local machine.

docker-compose up -d

Deployment Preperation

For the first deployment, some preconditions have to be met:

  • Make sure the public network exists in docker
  • Make sure the $PATH directory on the server exists

Deployment

For the deployment, the docker compose stack must be copied to the server and started

ssh $USER@$SERVER "docker compose -f $PATH/docker-compose.yml down"
scp .env $USER@$SERVER:/$PATH/
scp docker-compose.yml $USER@$SERVER:/$PATH/
scp -r config/ $USER@$SERVER:/$PATH/
ssh $USER@$SERVER "docker compose -f $PATH/docker-compose.yml up -d"

The $USER variable holds the username of the user on the server.
The $SERVER variable holds the IP-address or the domain of the server.
The $PATH variable holds the absolut path to the application folder on the server.

Authors

License

This project is licensed under the MIT License

Acknowledgments