Code Monkey home page Code Monkey logo

vrising-server-wine7's Introduction

V-Rising Server Docker

V-Rising Server run on latest wine.

This docker image based on BorkforceOne/V-Rising-Docker-Linux, ich777/docker-steamcmd-server@v-rising and steamcmd/steamcmd.

To config your server, please apply your settings by editing ServerHostSettings.json and ServerGameSettings.json directly and mount to /data/Settings in container. (it's recommended to mount whole /data to host filesystem to keep game progress, or it would be lost.)

Default server setting files are all placed in data folder, you can use these file to start your server.

Available tags

Folder Structure in container

/
├─ data
│  ├─ Saves
│  └─ Settings
│
├─ logs
│  └─ VRisingServer.log
│
└─ vrising               # server files

Env Options

Name Default Description
TZ Etc/UTC Timezone
GAME_ID 1829350 The GAME_ID that download from steam at startup
GAME_PARAMS "" additional parameter for server launch
VALIDATE true validate server files when container startup

Example

Docker run

docker run --name V-Rising -d \
        -p 9876-9877:9876-9877/udp \
        -e 'TZ=America/New_York' \    # optional
        -e 'GAME_ID=1829350' \        # optional
        -e 'GAME_PARAMS=' \           # optional
        -e 'VALIDATE=true' \          # optional
        -v /path/to/data:/data \
        -v /path/to/logs:/logs \      # optional
        -v /path/to/server:/vrising \ # optional, no need to mount for most case
        miaulightouch/vrising-server-wine7

Docker Compose

version: "3"

services:
  vrising:
    image: miaulightouch/vrising-server-wine7
    container_name: vrising
    environment:
      - TZ=America/New_York       # optional
      - GAME_ID=1829350           # optional
      - GAME_PARAMS=              # optional
      - VALIDATE=true             # optional
    volumes:
      - /path/to/data:/data       # optional
      - /path/to/logs:/logs       # optional
      - /path/to/server:/vrising  # optional, no need to mount for most case
    ports:
      - 9876-9877:9876-9877/udp
    restart: unless-stopped

vrising-server-wine7's People

Contributors

miaulightouch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

drokeravens

vrising-server-wine7's Issues

如何对服务器进行正确的关停或者重启呢?

有幸看到这个项目,在一番尝试之后能够正确的运行并进入服务器。但在docker进行stop操作后并没有观察到类似windows上服务器关停前的一些日志信息。
所以我不确定这样的操作是否正确……

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.