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.

9 lines
269 B

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