Skip to content
This repository has been archived by the owner on Mar 21, 2021. It is now read-only.

Commit

Permalink
Release 20.02.1
Browse files Browse the repository at this point in the history
  • Loading branch information
accetto committed Feb 15, 2020
1 parent 24f0968 commit d99cc41
Show file tree
Hide file tree
Showing 44 changed files with 187 additions and 45 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@

***

### Release 20.02.1

- **xubuntu-vnc-novnc**
- **gdebi** utility for installing local `.deb` packages added
- auto-starting again:
- AT-SPI D-Bus Bus
- desktop launcher for version sticker script (verbose) added
- all other images inherit the above changes
- **README** updated (better explanation of default passwords)
- container screenshots updated
- Updated versions:
- Chromium Browser **80.0.3987.87**
- Firefox **73.0**
- Node.js **12.16.0** (includes npm **6.13.4**)
- `current` tag with **13.8.0** (includes npm **6.13.6**)
- VSCode **1.42.1**
- Heroku **7.38.1**
- Angular **9.0.2**

### Release 20.02

- Updated versions:
Expand Down
15 changes: 12 additions & 3 deletions docker/xubuntu-vnc-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@
![badge-github-release][badge-github-release]
![badge-github-release-date][badge-github-release-date]

***

**WARNING** for Windows users

**Docker Desktop** (Docker for Windows) version **2.2.0.0** has introduced a new way of working with host's files. Unfortunately even the current version **2.2.0.3** leaves several issues with **bind mounts** unresolved. For example, I've found that **Firefox profiles** stored in bound host's folders don't persist modifications correctly. Firefox profiles stored in containers itself (writable layer) or on Docker managed volumes work correctly. If you need to use bind mounts, I wouldn't recommend upgrading to version 2.2 yet, because downgrading is not possible. The only way is to completely re-install the last working version **2.1.0.5**. However, you'll loose all the images and containers, so backup them first.

***

This repository contains resources for building Docker images based on [Ubuntu][docker-ubuntu] with [Xfce][xfce] desktop environment, [VNC][tigervnc] server for headless use and with JavaScript development platform for [Angular][angular] development.

The images are part of the growing [image hierarchy][this-wiki-image-hierarchy] and they are based on [accetto/xubuntu-vnc-typescript][accetto-docker-xubuntu-vnc-typescript]. They inherit all the features and therefore not the whole description will be repeated here.

The `latest` image inherits among others

- utilities **ping**, **wget**, **zip**, **unzip**, **sudo**, [curl][curl], [git][git] (Ubuntu distribution)
- utility **gdebi** lets you install local `.deb` packages resolving and installing their dependencies (Ubuntu distribution)
- popular text editor [vim][vim] (Ubuntu distribution)
- lite but advanced graphical editor [mousepad][mousepad] (Ubuntu distribution)
- [xfce4-screenshooter][screenshooter] and image viewer [ristretto][ristretto] (Ubuntu distribution)
Expand Down Expand Up @@ -225,18 +234,18 @@ Credit goes to all the countless people and companies, who contribute to open so

<!-- latest tag badges -->

[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1/blue
[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2/blue

[badge-github-commit-latest]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-angular.svg

<!-- chromium tag badges -->

[badge-VERSION_STICKER_CHROMIUM]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1-chromium79.0.3945.130/blue
[badge-VERSION_STICKER_CHROMIUM]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2-chromium80.0.3987.87/blue

[badge-github-commit-chromium]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-angular:chromium.svg

<!-- firefox tag badges -->

[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1-firefox72.0.2/blue
[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2-firefox73.0/blue

[badge-github-commit-firefox]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-angular:firefox.svg
6 changes: 3 additions & 3 deletions docker/xubuntu-vnc-angular/hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ TODAY=$(date +%Y-%m-%d)
VERSION_STICKER=""

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1"
VERSION_STICKER_CHROMIUM="ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1-chromium79.0.3945.130"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-node12.15.0-npm6.13.4-code1.42.0-tsc3.7.5-angular9.0.1-firefox72.0.2"
VERSION_STICKER_LATEST="ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2"
VERSION_STICKER_CHROMIUM="ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2-chromium80.0.3987.87"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-node12.16.0-npm6.13.4-code1.42.1-tsc3.7.5-angular9.0.2-firefox73.0"

case "${DOCKER_TAG}" in

Expand Down
2 changes: 2 additions & 0 deletions docker/xubuntu-vnc-angular/src/startup/version_sticker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ case "$1" in
vim=$("${STARTUPDIR}/version_of.sh" vim)
tigervnc=$("${STARTUPDIR}/version_of.sh" tigervnc)
curl=$("${STARTUPDIR}/version_of.sh" curl)
gdebi=$("${STARTUPDIR}/version_of.sh" gdebi)
git=$("${STARTUPDIR}/version_of.sh" git)
jq=$("${STARTUPDIR}/version_of.sh" jq)
echo "Ubuntu $ubuntu"
Expand All @@ -37,6 +38,7 @@ case "$1" in
echo "Ristretto $ristretto"
echo "xfce4-screenshooter $screenshooter"
echo "curl $curl"
echo "gdebi $gdebi"
echo "Git $git"
echo "jq $jq"
echo "Node $node"
Expand Down
Binary file modified docker/xubuntu-vnc-angular/xubuntu-vnc-angular.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion docker/xubuntu-vnc-chromium/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@

***

**WARNING** for Windows users

**Docker Desktop** (Docker for Windows) version **2.2.0.0** has introduced a new way of working with host's files. Unfortunately even the current version **2.2.0.3** leaves several issues with **bind mounts** unresolved. For example, I've found that **Firefox profiles** stored in bound host's folders don't persist modifications correctly. Firefox profiles stored in containers itself (writable layer) or on Docker managed volumes work correctly. If you need to use bind mounts, I wouldn't recommend upgrading to version 2.2 yet, because downgrading is not possible. The only way is to completely re-install the last working version **2.1.0.5**. However, you'll loose all the images and containers, so backup them first.

***

This repository contains resources for building Docker images based on [Ubuntu][docker-ubuntu] with [Xfce][xfce] desktop environment, [VNC][tigervnc] server for headless use and the current [Chromium][chromium] web browser.

The images are part of the growing [image hierarchy][this-wiki-image-hierarchy] and they are based on [accetto/xubuntu-vnc][accetto-docker-xubuntu-vnc]. They inherit all the features and therefore not the whole description will be repeated here.

The `latest` image inherits among others

- utilities **ping**, **wget**, **zip**, **unzip**, **sudo**, [curl][curl], [git][git] (Ubuntu distribution)
- utility **gdebi** lets you install local `.deb` packages resolving and installing their dependencies (Ubuntu distribution)
- popular text editor [vim][vim] (Ubuntu distribution)
- lite but advanced graphical editor [mousepad][mousepad] (Ubuntu distribution)
- [xfce4-screenshooter][screenshooter] and image viewer [ristretto][ristretto] (Ubuntu distribution)
Expand Down Expand Up @@ -155,6 +162,6 @@ Credit goes to all the countless people and companies, who contribute to open so

<!-- latest tag badges -->

[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-chromium79.0.3945.130/blue
[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-chromium80.0.3987.87/blue

[badge-github-commit-latest]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-chromium.svg
2 changes: 1 addition & 1 deletion docker/xubuntu-vnc-chromium/hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BASETAG=""
TODAY=$(date +%Y-%m-%d)

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.3-chromium79.0.3945.130"
VERSION_STICKER_LATEST="ubuntu18.04.3-chromium80.0.3987.87"

VERSION_STICKER="${VERSION_STICKER_LATEST}"

Expand Down
2 changes: 2 additions & 0 deletions docker/xubuntu-vnc-chromium/src/startup/version_sticker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ case "$1" in
vim=$("${STARTUPDIR}/version_of.sh" vim)
tigervnc=$("${STARTUPDIR}/version_of.sh" tigervnc)
curl=$("${STARTUPDIR}/version_of.sh" curl)
gdebi=$("${STARTUPDIR}/version_of.sh" gdebi)
git=$("${STARTUPDIR}/version_of.sh" git)
jq=$("${STARTUPDIR}/version_of.sh" jq)
echo "Ubuntu $ubuntu"
Expand All @@ -25,6 +26,7 @@ case "$1" in
echo "Ristretto $ristretto"
echo "xfce4-screenshooter $screenshooter"
echo "curl $curl"
echo "gdebi $gdebi"
echo "Git $git"
echo "jq $jq"
echo "Chromium $chromium"
Expand Down
Binary file modified docker/xubuntu-vnc-chromium/xubuntu-vnc-chromium.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion docker/xubuntu-vnc-drawio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@
![badge-github-release][badge-github-release]
![badge-github-release-date][badge-github-release-date]

***

**WARNING** for Windows users

**Docker Desktop** (Docker for Windows) version **2.2.0.0** has introduced a new way of working with host's files. Unfortunately even the current version **2.2.0.3** leaves several issues with **bind mounts** unresolved. For example, I've found that **Firefox profiles** stored in bound host's folders don't persist modifications correctly. Firefox profiles stored in containers itself (writable layer) or on Docker managed volumes work correctly. If you need to use bind mounts, I wouldn't recommend upgrading to version 2.2 yet, because downgrading is not possible. The only way is to completely re-install the last working version **2.1.0.5**. However, you'll loose all the images and containers, so backup them first.

***

This repository contains resources for building Docker images based on [Ubuntu][docker-ubuntu] with [Xfce][xfce] desktop environment, [VNC][tigervnc] server for headless use and the free open-source [desktop version][drawio-desktop] of the diagramming tool [draw.io][drawio].

The images are part of the growing [image hierarchy][this-wiki-image-hierarchy] and they are based on [accetto/xubuntu-vnc][accetto-docker-xubuntu-vnc]. They inherit all the features and therefore not the whole description will be repeated here.

The `latest` image inherits among others

- utilities **ping**, **wget**, **zip**, **unzip**, **sudo**, [curl][curl], [git][git] (Ubuntu distribution)
- utility **gdebi** lets you install local `.deb` packages resolving and installing their dependencies (Ubuntu distribution)
- popular text editor [vim][vim] (Ubuntu distribution)
- lite but advanced graphical editor [mousepad][mousepad] (Ubuntu distribution)
- [xfce4-screenshooter][screenshooter] and image viewer [ristretto][ristretto] (Ubuntu distribution)
Expand Down Expand Up @@ -170,6 +179,6 @@ Credit goes to all the countless people and companies, who contribute to open so

<!-- firefox tag badges -->

[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-drawio12.2.2-firefox72.0.2/blue
[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-drawio12.2.2-firefox73.0/blue

[badge-github-commit-firefox]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-drawio:firefox.svg
2 changes: 1 addition & 1 deletion docker/xubuntu-vnc-drawio/hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ VERSION_STICKER=""

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.3-drawio12.2.2"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-drawio12.2.2-firefox72.0.2"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-drawio12.2.2-firefox73.0"

case "${DOCKER_TAG}" in

Expand Down
2 changes: 2 additions & 0 deletions docker/xubuntu-vnc-drawio/src/startup/version_sticker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ case "$1" in
vim=$("${STARTUPDIR}/version_of.sh" vim)
tigervnc=$("${STARTUPDIR}/version_of.sh" tigervnc)
curl=$("${STARTUPDIR}/version_of.sh" curl)
gdebi=$("${STARTUPDIR}/version_of.sh" gdebi)
git=$("${STARTUPDIR}/version_of.sh" git)
jq=$("${STARTUPDIR}/version_of.sh" jq)
echo "Ubuntu $ubuntu"
Expand All @@ -27,6 +28,7 @@ case "$1" in
echo "Ristretto $ristretto"
echo "xfce4-screenshooter $screenshooter"
echo "curl $curl"
echo "gdebi $gdebi"
echo "Git $git"
echo "jq $jq"
echo "draw.io Desktop $drawio"
Expand Down
13 changes: 10 additions & 3 deletions docker/xubuntu-vnc-firefox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@

***

**WARNING** for Windows users

**Docker Desktop** (Docker for Windows) version **2.2.0.0** has introduced a new way of working with host's files. Unfortunately even the current version **2.2.0.3** leaves several issues with **bind mounts** unresolved. For example, I've found that **Firefox profiles** stored in bound host's folders don't persist modifications correctly. Firefox profiles stored in containers itself (writable layer) or on Docker managed volumes work correctly. If you need to use bind mounts, I wouldn't recommend upgrading to version 2.2 yet, because downgrading is not possible. The only way is to completely re-install the last working version **2.1.0.5**. However, you'll loose all the images and containers, so backup them first.

***

This repository contains resources for building Docker images based on [Ubuntu][docker-ubuntu] with [Xfce][xfce] desktop environment, [VNC][tigervnc] server for headless use and the current [Firefox Quantum][firefox] web browser.

The main image is a streamlined and simplified version of my other image [accetto/ubuntu-vnc-xfce-firefox-plus][accetto-docker-ubuntu-vnc-xfce-firefox-plus]. The applicable **plus** features have been re-implemented because **Firefox v67** handles user profiles differently.
Expand All @@ -24,6 +30,7 @@ The images are part of the growing [image hierarchy][this-wiki-image-hierarchy]
The `latest` image inherits among others

- utilities **ping**, **wget**, **zip**, **unzip**, **sudo**, [curl][curl], [git][git] (Ubuntu distribution)
- utility **gdebi** lets you install local `.deb` packages resolving and installing their dependencies (Ubuntu distribution)
- popular text editor [vim][vim] (Ubuntu distribution)
- lite but advanced graphical editor [mousepad][mousepad] (Ubuntu distribution)
- [xfce4-screenshooter][screenshooter] and image viewer [ristretto][ristretto] (Ubuntu distribution)
Expand Down Expand Up @@ -237,18 +244,18 @@ Credit goes to all the countless people and companies, who contribute to open so

<!-- latest tag badges -->

[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox72.0.2/blue
[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox73.0/blue

[badge-github-commit-latest]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-firefox.svg

<!-- default tag badges -->

[badge-VERSION_STICKER_DEFAULT]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox72.0.2/blue
[badge-VERSION_STICKER_DEFAULT]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox73.0/blue

[badge-github-commit-default]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-firefox:default.svg

<!-- multiprocess tag badges -->

[badge-VERSION_STICKER_MULTIPROCESS]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox72.0.2/blue
[badge-VERSION_STICKER_MULTIPROCESS]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-firefox73.0/blue

[badge-github-commit-multiprocess]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-firefox:multiprocess.svg
6 changes: 3 additions & 3 deletions docker/xubuntu-vnc-firefox/hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ TODAY=$(date +%Y-%m-%d)
VERSION_STICKER=""

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.3-firefox72.0.2"
VERSION_STICKER_DEFAULT="ubuntu18.04.3-firefox72.0.2"
VERSION_STICKER_MULTIPROCESS="ubuntu18.04.3-firefox72.0.2"
VERSION_STICKER_LATEST="ubuntu18.04.3-firefox73.0"
VERSION_STICKER_DEFAULT="ubuntu18.04.3-firefox73.0"
VERSION_STICKER_MULTIPROCESS="ubuntu18.04.3-firefox73.0"

case "${DOCKER_TAG}" in

Expand Down
2 changes: 2 additions & 0 deletions docker/xubuntu-vnc-firefox/src/startup/version_sticker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ case "$1" in
vim=$("${STARTUPDIR}/version_of.sh" vim)
tigervnc=$("${STARTUPDIR}/version_of.sh" tigervnc)
curl=$("${STARTUPDIR}/version_of.sh" curl)
gdebi=$("${STARTUPDIR}/version_of.sh" gdebi)
git=$("${STARTUPDIR}/version_of.sh" git)
jq=$("${STARTUPDIR}/version_of.sh" jq)
echo "Ubuntu $ubuntu"
Expand All @@ -25,6 +26,7 @@ case "$1" in
echo "Ristretto $ristretto"
echo "xfce4-screenshooter $screenshooter"
echo "curl $curl"
echo "gdebi $gdebi"
echo "Git $git"
echo "jq $jq"
echo "Firefox $firefox"
Expand Down
Binary file modified docker/xubuntu-vnc-firefox/xubuntu-vnc-firefox.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion docker/xubuntu-vnc-gimp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@
![badge-github-release][badge-github-release]
![badge-github-release-date][badge-github-release-date]

***

**WARNING** for Windows users

**Docker Desktop** (Docker for Windows) version **2.2.0.0** has introduced a new way of working with host's files. Unfortunately even the current version **2.2.0.3** leaves several issues with **bind mounts** unresolved. For example, I've found that **Firefox profiles** stored in bound host's folders don't persist modifications correctly. Firefox profiles stored in containers itself (writable layer) or on Docker managed volumes work correctly. If you need to use bind mounts, I wouldn't recommend upgrading to version 2.2 yet, because downgrading is not possible. The only way is to completely re-install the last working version **2.1.0.5**. However, you'll loose all the images and containers, so backup them first.

***

This repository contains resources for building Docker images based on [Ubuntu][docker-ubuntu] with [Xfce][xfce] desktop environment, [VNC][tigervnc] server for headless use and the free open-source bitmap image editor [GIMP][gimp].

The images are part of the growing [image hierarchy][this-wiki-image-hierarchy] and they are based on [accetto/xubuntu-vnc][accetto-docker-xubuntu-vnc]. They inherit all the features and therefore not the whole description will be repeated here.

The `latest` image inherits among others

- utilities **ping**, **wget**, **zip**, **unzip**, **sudo**, [curl][curl], [git][git] (Ubuntu distribution)
- utility **gdebi** lets you install local `.deb` packages resolving and installing their dependencies (Ubuntu distribution)
- popular text editor [vim][vim] (Ubuntu distribution)
- lite but advanced graphical editor [mousepad][mousepad] (Ubuntu distribution)
- [xfce4-screenshooter][screenshooter] and image viewer [ristretto][ristretto] (Ubuntu distribution)
Expand Down Expand Up @@ -161,6 +170,6 @@ Credit goes to all the countless people and companies, who contribute to open so

<!-- firefox tag badges -->

[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-gimp2.8.22-firefox72.0.2/blue
[badge-VERSION_STICKER_FIREFOX]: https://badgen.net/badge/version%20sticker/ubuntu18.04.3-gimp2.8.22-firefox73.0/blue

[badge-github-commit-firefox]: https://images.microbadger.com/badges/commit/accetto/xubuntu-vnc-gimp:firefox.svg
2 changes: 1 addition & 1 deletion docker/xubuntu-vnc-gimp/hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ VERSION_STICKER=""

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.3-gimp2.8.22"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-gimp2.8.22-firefox72.0.2"
VERSION_STICKER_FIREFOX="ubuntu18.04.3-gimp2.8.22-firefox73.0"

case "${DOCKER_TAG}" in

Expand Down
2 changes: 2 additions & 0 deletions docker/xubuntu-vnc-gimp/src/startup/version_sticker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ case "$1" in
vim=$("${STARTUPDIR}/version_of.sh" vim)
tigervnc=$("${STARTUPDIR}/version_of.sh" tigervnc)
curl=$("${STARTUPDIR}/version_of.sh" curl)
gdebi=$("${STARTUPDIR}/version_of.sh" gdebi)
git=$("${STARTUPDIR}/version_of.sh" git)
jq=$("${STARTUPDIR}/version_of.sh" jq)
echo "Ubuntu $ubuntu"
Expand All @@ -28,6 +29,7 @@ case "$1" in
echo "Ristretto $ristretto"
echo "xfce4-screenshooter $screenshooter"
echo "curl $curl"
echo "gdebi $gdebi"
echo "Git $git"
echo "jq $jq"
echo "Gimp $gimp"
Expand Down
Binary file modified docker/xubuntu-vnc-gimp/xubuntu-vnc-gimp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d99cc41

Please sign in to comment.