Skip to content

Commit

Permalink
Update docker version to 19.03.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry committed Nov 18, 2019
1 parent d76dc88 commit 4c601e3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,20 @@ PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM no
```
* `sudo systemctl restart ssh`
* `sudo systemctl restart ssh`

## Set locale
* https://www.mvoronin.pro/ru/blog/post-40
* https://stackoverflow.com/questions/55673886/what-is-the-difference-between-c-utf-8-and-en-us-utf-8-locales
* locale-gen en_US.UTF-8
* edit `/etc/default/locale`
* Put minimal config
```
LANG=C.UTF-8
LANGUAGE=en_US
LC_ALL=C.UTF-8
```

## Production docker version
docker -v
Docker version 19.03.5, build 633a0ea838
6 changes: 5 additions & 1 deletion install-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ sudo add-apt-repository \

sudo apt-get update

sudo apt-get install -y docker-ce=18.06.3~ce~3-0~ubuntu
# Old production version
#sudo apt-get install -y docker-ce=18.06.3~ce~3-0~ubuntu

# New production version
sudo apt-get install docker-ce=5:19.03.5~3-0~ubuntu-bionic docker-ce-cli=5:19.03.5~3-0~ubuntu-bionic containerd.io

sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose

Expand Down

0 comments on commit 4c601e3

Please sign in to comment.