Skip to content

Commit a613d4a

Browse files
committed
docker stuffs
1 parent ea0181d commit a613d4a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,23 @@ Once your proposal has been moved to the `accepted` stage, you can begin working
7373

7474
## Building the Site
7575

76-
There is some basic JavaScript infrastructure to help build the static site. This should be as simple as:
76+
There is some basic JavaScript infrastructure to help build the static site. There are two options:
77+
78+
### Option 1: Build locally
7779

7880
1. install node and npm. easiest way is [nvm](https://github.com/nvm-sh/nvm) and `nvm use` in this directory.
7981
1. `npm install`
8082
1. `npm install gulp -g`
8183
1. `gulp`
8284

83-
A browser should launch viewing https://localhost:3000.
85+
A browser should launch viewing [https://localhost:3000](https://localhost:3000)
86+
87+
### Option 2: Use Docker
88+
89+
1. docker build --tag devjava .
90+
1. docker run --publish 3000:3000 devjava
91+
92+
You should then be able to open a browser and visit [https://localhost:3000](https://localhost:3000)
8493

8594

8695
## Working with Content

0 commit comments

Comments
 (0)