Compare commits

..

No commits in common. "c8539af605c47b0507d520f80e7066b1d273cdde" and "f69f32c43877c9ba96bd5712701c3ec23b93b022" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,7 @@
}, },
"permissions": [ "permissions": [
"activeTab",
"contextMenus" "contextMenus"
] ]
} }

View File

@ -1,11 +1,10 @@
IMAGE_NAME=unshortener-api IMAGE_NAME=unshortener-api
CONTAINER_NAME=unshortener CONTAINER_NAME=unshortener
CONTAINER_PORT=8000
build: build:
docker build -t $(IMAGE_NAME) . docker build -t $(IMAGE_NAME) .
run: run:
docker run --name $(CONTAINER_NAME) -d -p $(CONTAINER_PORT):8000 $(IMAGE_NAME) docker run --name $(CONTAINER_NAME) -d $(IMAGE_NAME)
stop: stop:
docker stop $(CONTAINER_NAME) docker stop $(CONTAINER_NAME)
clean: clean: