Added README and updated envs

master
Yuri van Midden 3 years ago
parent f0b2ec7c59
commit 13c5861df0
Signed by: yuri
GPG Key ID: B1E365DD233EF90A
  1. 18
      README.md
  2. 2
      docker-compose.yml
  3. 1
      env.dist

@ -0,0 +1,18 @@
# Harambee dedicated servers for games set-up
This repository is a set-up for several dedicated servers for the online enjoyment of members of Harambee. It consists of a docker-compose stack that is meant to be deployed almost as-is.
## Currently included (15-02-2020)
- [Valheim](https://github.com/lloesche/valheim-server-docker)
## How to set up yourself?
1. Clone this repository
2. Copy `dist.env` to `.env`
3. Change the environment variables in `.env` to your likings
4. `$ docker-compose up -d`
5. Watch magic happen.
6. > You're a hacker Harry!
## Objectives and principles
- Game data is stored in the `./data/<game>` directory, but can be changed to your liking in the environment variables
- The containers should be kept up-to-date automatically, so when a new version of the game comes out, the server downloads this version and restarts the container

@ -17,4 +17,4 @@ services:
ports:
- "2456-2458:2456-2458/udp"
volumes:
- "./data/valheim:/config"
- "${DATA_DIR}/valheim:/config"

@ -1,5 +1,6 @@
# Base config
TZ=Europe/Amsterdam
DATA_DIR=./data
#
# Valheim

Loading…
Cancel
Save