Browse Source

Merge pull request #58 from jasonish/selinux/v1

Makefile: allow volumes to work on selinux
V3.0
ReFil 3 years ago committed by GitHub
parent
commit
685f436431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Makefile

4
Makefile

@ -6,8 +6,8 @@ TIMESTAMP := $(shell date -u +"%Y%m%d%H%M%S") @@ -6,8 +6,8 @@ TIMESTAMP := $(shell date -u +"%Y%m%d%H%M%S")
all:
$(DOCKER) build --tag zmk --file Dockerfile .
$(DOCKER) run --rm -it --name zmk \
-v $(PWD)/firmware:/app/firmware \
-v $(PWD)/config:/app/config:ro \
-v $(PWD)/firmware:/app/firmware:z \
-v $(PWD)/config:/app/config:ro,z \
-e TIMESTAMP=$(TIMESTAMP) \
zmk

Loading…
Cancel
Save