Skip to content

Commit c32771d

Browse files
authored
Merge pull request #38 from stchang/docker
2 parents d594372 + 0180f5b commit c32771d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Diff for: Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
RACKS_FLAGS = --enable-self-tail --enable-flatten-if --js-beautify
33
RACKS_APP_FLAGS = --skip-arity-checks
44
RACKS_EXAMPLE_FLAGS = --skip-arity-checks
5-
# DOCKER_BUILD_DEBUG_FLAGS= --progress plain --no-cache
5+
DOCKER_BUILD_DEBUG_FLAGS = --progress plain --no-cache
66

77
### Run playground
88

@@ -17,13 +17,13 @@ quickrun: quickbuild
1717
### Docker
1818

1919
docker-build:
20-
docker build $(DOCKER_BUILD_DEBUG_FLAGS) -t vishesh/racketscript-playground .
20+
docker build $(DOCKER_BUILD_DEBUG_FLAGS) -t racketscript/racketscript-playground .
2121

2222
docker-run:
23-
docker run -dp 8080:80 -e PORT=80 -t vishesh/racketscript-playground
23+
docker run -dp 8080:80 -e PORT=80 -t racketscript/racketscript-playground
2424

2525
docker-push:
26-
docker push vishesh/racketscript-playground:latest
26+
docker push racketscript/racketscript-playground:latest
2727

2828
#### Build
2929

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Racketscript Playground
22
=======================
33

44
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
5-
[![Docker](https://img.shields.io/docker/cloud/automated/vishesh/racketscript-playground)](https://hub.docker.com/r/vishesh/racketscript-playground)
5+
[![Docker](https://img.shields.io/docker/cloud/automated/vishesh/racketscript-playground)](https://hub.docker.com/r/racketscript/racketscript-playground)
66
[![Try Online](https://img.shields.io/badge/try_it-online!-ff9900.svg)](http://play.racketscript.org)
77

8-
Playground for [RacketScript](https://github.com/vishesh/racketscript).
8+
Playground for [RacketScript](https://github.com/racketscript/racketscript).
99
Both server-side and client-side code is written in RacketScript.
1010

1111
Playground uses Github Gist to save and load files. The name of Gist
@@ -26,14 +26,14 @@ are [here](https://codemirror.net/demo/search.html).
2626
### With Docker (for deployment)
2727

2828
Easiest way is to pull the latest image from Docker registry
29-
([vishesh/racketscript-playground](https://hub.docker.com/r/vishesh/racketscript-playground)).
29+
([racketscript/racketscript-playground](https://hub.docker.com/r/racketscript/racketscript-playground)).
3030

3131
```bash
3232
# Pull docker image
33-
docker pull vishesh/racketscript-playground
33+
docker pull racketscript/racketscript-playground
3434

3535
# Run playground webserver on port 8080
36-
docker run -dp 8080:8080 -t vishesh/racketscript-playground
36+
docker run -dp 8080:8080 -t racketscript/racketscript-playground
3737
```
3838

3939
You can also build image yourself using `make docker-build`, followed by `make

0 commit comments

Comments
 (0)