Skip to content

Commit

Permalink
[NEW] Release 0.0.0
Browse files Browse the repository at this point in the history
Update package.json version
Add a tutorial for application deployment
  • Loading branch information
Thurstag committed Dec 23, 2020
1 parent 558889f commit b892627
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,21 @@ npm run test:e2e
npm run test:unit
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
### Run docker image

A docker image is attached to each release, so you can run a self-hosted version of the application. First you have to download
the docker image, and install docker.

#### Load docker image

```
docker load < bowling_docker_img.tar
```

#### Run docker image

```
docker run -p ${HOST_PORT}:80 -it bowling_docker_img
```

N.B: Don't forget to change `${HOST_PORT}` by the port you want to expose for this application on your computer
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bowling",
"version": "0.1.0",
"version": "0.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit b892627

Please sign in to comment.