readme: docker

pull/1275/head
Alexander Medvednikov 2019-07-23 02:41:55 +02:00 committed by GitHub
parent 2c31469ec2
commit 083ee6c3c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 10 deletions

View File

@ -40,17 +40,7 @@ The compilation is temporarily slower for this release:
## Installing V in docker container
```bash
git clone https://github.com/vlang/v
cd v
docker build -t vlang .
#to enter in docker container
docker run --rm -it vlang:latest
#to enter in v shell run
v
```
## Installing V from source
@ -98,6 +88,15 @@ git pull origin master
make
```
## Docker
```bash
git clone https://github.com/vlang/v
cd v
docker build -t vlang .
docker run --rm -it vlang:latest
v
```