docker small adjustments (#17)

just some basic docker make file stuff to make it easier for local dev.

Co-authored-by: gedw99 <gedw99@gmail.com>
Reviewed-on: https://git.mills.io/prologic/tube/pulls/17
Co-authored-by: gerard webb <gedw99@noreply@mills.io>
Co-committed-by: gerard webb <gedw99@noreply@mills.io>
This commit is contained in:
gerard webb 2022-04-29 21:54:16 +00:00 committed by James Mills
parent acf8cbd82d
commit 012ae52fc7
3 changed files with 9 additions and 2 deletions

View file

@ -6,7 +6,7 @@ FROM golang:alpine
RUN apk --no-cache -U add git build-base ffmpeg ffmpeg-dev
RUN go get github.com/mutschler/mt
RUN go install github.com/mutschler/mt@latest
COPY --from=build /src/tube /tube

View file

@ -23,8 +23,10 @@ build: clean
install: build
@go install
image:
docker-image:
@docker build -t prologic/tube .
docker-run:
@docker run -p 8000:8000 -t prologic/tube .
test: install
@go test

View file

@ -50,6 +50,11 @@ $ docker pull prologic/tube
$ docker run -p 8000:8000 -v /path/to/data:/data
```
or using makefile:
``` make docker-run ```
Open http://DOCKER_MACHINE_IP:8000/ in your Browser!
Where `DOCKER_MACHINE_IP` is the IP Address of your Docker Node.