Skip to content

Commit 88022ca

Browse files
committed
Rename to Web: binary and docker images
Signed-off-by: Carlos Martín <[email protected]>
1 parent b2092c4 commit 88022ca

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ docker_image: &docker_image
2121
group: docker
2222
image: plugins/docker
2323
registry: docker.io
24-
repo: srcd/gitbase-playground
24+
repo: srcd/gitbase-web
2525
secrets: [ docker_username, docker_password ]
2626
dockerfile: Dockerfile
2727
debug: true

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- make docker-build
5959
- export FOOTER_HTML='<div class="custom-base64-html"></div>'
6060
- export FOOTER_HTML_BASE64=`echo -n $FOOTER_HTML | base64`
61-
- docker run --rm -d --publish 8080:8080 --env GITBASEPG_FOOTER_HTML=$FOOTER_HTML_BASE64 srcd/gitbase-playground:$(make version)
61+
- docker run --rm -d --publish 8080:8080 --env GITBASEPG_FOOTER_HTML=$FOOTER_HTML_BASE64 srcd/gitbase-web:$(make version)
6262
- sleep 5
6363
- curl http://127.0.0.1:8080 | grep "$FOOTER_HTML"
6464
# release to github

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ RUN apt-get update && \
88

99
ADD ./build/bin /bin
1010

11-
ENTRYPOINT ["/bin/gitbase-playground"]
11+
ENTRYPOINT ["/bin/gitbase-web"]

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package configuration
2-
PROJECT := gitbase-playground
3-
COMMANDS := cmd/gitbase-playground
2+
PROJECT := gitbase-web
3+
COMMANDS := cmd/gitbase-web
44
DEPENDENCIES := \
55
github.com/jteeuwen/go-bindata \
66
github.com/golang/lint/golint
@@ -121,7 +121,7 @@ $(GO_LINTABLE_PACKAGES):
121121
$(GOVET) $@
122122

123123
back-start:
124-
$(GO_RUN_ENV) $(GORUN) cmd/gitbase-playground/main.go
124+
$(GO_RUN_ENV) $(GORUN) cmd/gitbase-web/main.go
125125

126126
# Frontend
127127

File renamed without changes.

docker-compose.build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: '3.3'
22

33
services:
4-
playground:
5-
image: gitbase-playground-dev
4+
web:
5+
image: gitbase-web-dev
66
build: .

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '3.3'
22

33
services:
4-
playground:
5-
image: "srcd/gitbase-playground"
4+
web:
5+
image: "srcd/gitbase-web"
66
ports:
77
- "8080:8080"
88
environment:

0 commit comments

Comments
 (0)