File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2
2
RACKS_FLAGS = --enable-self-tail --enable-flatten-if --js-beautify
3
3
RACKS_APP_FLAGS = --skip-arity-checks
4
4
RACKS_EXAMPLE_FLAGS = --skip-arity-checks
5
- # DOCKER_BUILD_DEBUG_FLAGS= --progress plain --no-cache
5
+ DOCKER_BUILD_DEBUG_FLAGS = --progress plain --no-cache
6
6
7
7
# ## Run playground
8
8
@@ -17,13 +17,13 @@ quickrun: quickbuild
17
17
# ## Docker
18
18
19
19
docker-build :
20
- docker build $(DOCKER_BUILD_DEBUG_FLAGS ) -t vishesh /racketscript-playground .
20
+ docker build $(DOCKER_BUILD_DEBUG_FLAGS ) -t racketscript /racketscript-playground .
21
21
22
22
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
24
24
25
25
docker-push :
26
- docker push vishesh /racketscript-playground:latest
26
+ docker push racketscript /racketscript-playground:latest
27
27
28
28
# ### Build
29
29
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ Racketscript Playground
2
2
=======================
3
3
4
4
[ ![ 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 )
6
6
[ ![ Try Online] ( https://img.shields.io/badge/try_it-online!-ff9900.svg )] ( http://play.racketscript.org )
7
7
8
- Playground for [ RacketScript] ( https://github.com/vishesh /racketscript ) .
8
+ Playground for [ RacketScript] ( https://github.com/racketscript /racketscript ) .
9
9
Both server-side and client-side code is written in RacketScript.
10
10
11
11
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).
26
26
### With Docker (for deployment)
27
27
28
28
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 ) ).
30
30
31
31
``` bash
32
32
# Pull docker image
33
- docker pull vishesh /racketscript-playground
33
+ docker pull racketscript /racketscript-playground
34
34
35
35
# 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
37
37
```
38
38
39
39
You can also build image yourself using ` make docker-build ` , followed by `make
You can’t perform that action at this time.
0 commit comments