docker-quake3 icon indicating copy to clipboard operation
docker-quake3 copied to clipboard

old docker-compose format doesn't allow health checks

Open chadmiller opened this issue 4 years ago • 0 comments

Maybe something like this?

version: "3.3"
services:
    quake3:
        image: inanimate/quake3
        restart: always
        hostname: docker-q3
        ports:
           - "27960:27960/udp"
        volumes:
           - baseq3/:/usr/share/games/quake3/baseq3/
           - server.cfg:/usr/share/games/quake3/baseq3/server.cfg
        healthcheck:
           test: ["CMD", "ps", "-C", "ioq3ded"]

chadmiller avatar Jun 22 '20 00:06 chadmiller