You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
870 B

8 years ago
# Google Chrome in Docker
First initialize the data volume
```
docker run --rm -ti -v chrome_data:/data busybox /bin/sh -c "chown 1000:1000 /data"
```
Launch the Chrome
8 years ago
```
docker-compose up -d
```
8 years ago
## Extra Notes
8 years ago
Good & stable vsync
8 years ago
```
chrome://flags/
Enable "Override software rendering list"
```
8 years ago
Verify
```
chrome://gpu/
```
8 years ago
To see whether you have the best result, you should have stable 60 FPS at following tests
8 years ago
8 years ago
```
http://ie.microsoft.com/testdrive/Performance/FishIETank/Default.html
http://www.vsynctester.com/
```
You may want to disable Google's VP8 & VP9 video codecs: "MSE & WebM VP9" and "WebM VP8"
as there is no hardware decoding for them.
To do this, install h264ify extension from
8 years ago
```
https://chrome.google.com/webstore/detail/h264ify/aleakchihdccplidncghkekgioiakgal?hl=en-US
```
Check the codecs
8 years ago
```
https://www.youtube.com/html5
```