Velocity icon indicating copy to clipboard operation
Velocity copied to clipboard

Docker image

Open Proximyst opened this issue 3 years ago • 6 comments

A Docker image should be provided to easily use a dockerised set up.

It would be very useful for folks like me who don't want to have SQL servers on their host machines and still keep the single command up/down of a stack (i.e. docker-compose).

Proximyst avatar Oct 04 '20 17:10 Proximyst

I'm open to it but it'd be a low priority for me right now. (I'm already failing to cut releases on time, adding the additional complication of producing and pushing Docker images is a bit much.)

astei avatar Oct 04 '20 17:10 astei

In my opinion, there can rarely be any Docker images that will fit for all use-cases with Minecraft related projects. You're probably better off doing something like this:

version: '2.4'

services:
  proxy:
    image: adoptopenjdk:11-jre-hotspot
    restart: unless-stopped
    init: true
    command: java -jar /proxy/velocity.jar
    working_dir: "/proxy"
    volumes:
      - ".:/proxy"

mikroskeem avatar Oct 22 '20 12:10 mikroskeem

Maybe setup a Github Actions Pipeline that deploys automatically to dockerhub on release :)

fionera avatar Feb 26 '21 12:02 fionera

For now, you can also take a look at https://github.com/cubxity/docker-minecraft-proxy

Cubxity avatar Mar 18 '21 12:03 Cubxity

itzg's images are working for me :)

ghost avatar Jul 05 '22 11:07 ghost

2nd for itzg - https://github.com/itzg/docker-bungeecord/ supports bungeecord, waterfall & velocity.

bear454 avatar Dec 17 '23 04:12 bear454