blob: edbe6837e2b403dbb5e07fb914404ae84dcbc718 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# A safe development environment
## Usage
### Building the container
Go into the QC-dev-environment directory and run:
```
docker build . -t <your-wanted-tag e.g. cortex-dev>
```
### Running the container
It needs to run privileged since we need to run the `mount` command inside it. You can run it without the `--privileged` path if you're not planning to mount the QC's file system and just want to compile something
```
docker run --privileged -it -p 5900:5900 -v <absolute-path-to-current-folder>/mount:/mnt cortex-dev
```
When attached to the docker container's shell, there is one post-install step left. Run the following command:
```
./init_system.sh
```
This will mount the QC filesystem and install a custom compiled version of QT inside it that has support for VNC.
|