1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

readme: docker

This commit is contained in:
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

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 ## Installing V from source
@ -98,6 +88,15 @@ git pull origin master
make make
``` ```
## Docker
```bash
git clone https://github.com/vlang/v
cd v
docker build -t vlang .
docker run --rm -it vlang:latest
v
```