Rename executable for consistency to rove-server

This commit is contained in:
Marc Di Luzio 2020-05-29 22:45:01 +01:00
parent 73a1e1fd21
commit e809c29b73
2 changed files with 3 additions and 3 deletions

View file

@ -5,6 +5,6 @@ WORKDIR /app
COPY . . COPY . .
RUN go mod download RUN go mod download
RUN go build -o rove ./... RUN go build -o rove-server ./...
CMD "./rove" CMD "./rove-server"

View file

@ -1,6 +1,6 @@
version: '3' version: '3'
services: services:
rove: rove-server:
build: . build: .
ports: ports:
- "80:80" - "80:80"