Mumble docker container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
241 B

  1. IMAGE_NAME="sothr/mumble"
  2. IMAGE_TAG="$$(grep 'ARG MUMBLE_VERSION' Dockerfile | awk -F = '{print $$2}')"
  3. build:
  4. @docker build --force-rm --pull --tag $(IMAGE_NAME):$(IMAGE_TAG) .
  5. purge:
  6. @docker image rm --force $(IMAGE_NAME):$(IMAGE_TAG)