https://github.com/pascalgrimaud/docker-ubuntu
Ubuntu 14.04 with locale to en_US.UTF-8
https://github.com/pascalgrimaud/docker-ubuntu
Last synced: about 1 year ago
JSON representation
Ubuntu 14.04 with locale to en_US.UTF-8
- Host: GitHub
- URL: https://github.com/pascalgrimaud/docker-ubuntu
- Owner: pascalgrimaud
- License: mit
- Created: 2015-05-14T21:44:43.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-27T20:29:12.000Z (almost 11 years ago)
- Last Synced: 2024-10-05T19:22:30.602Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 195 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[]
(http://www.ubuntu.com/)
# Information
This image is used to set the locale to en_US.UTF-8.
It is used as the base image for other projects.
The Docker builds on [CircleCI](https://circleci.com) :
* You get "Successfully built"
* But, when you test `locale-gen en_US.UTF-8`, it failed []
(https://circleci.com/gh/pascalgrimaud/docker-ubuntu)
* You can see this error in the log when you attempt to change the locale from an Ubuntu image :
```
Step 3 : RUN locale-gen en_US.UTF-8 && echo 'LANG="en_US.UTF-8"' > /etc/default/locale
---> Running in b24799cb6c0a
Generating locales...
cannot change mode of new locale archive: No such file or directory
en_US.UTF-8... failed
Generation complete.
---> 7f9b8ce08b3c
```
The base docker image :
* [ubuntu:14.04](https://registry.hub.docker.com/u/library/ubuntu/)
The GitHub project :
* [pascalgrimaud/docker-ubuntu](https://github.com/pascalgrimaud/docker-ubuntu/)
The Docker Hub :
* [pascalgrimaud/ubuntu/](https://registry.hub.docker.com/u/pascalgrimaud/ubuntu/)
# Installation
You can clone this project and build with docker command :
```
git clone https://github.com/pascalgrimaud/docker-ubuntu.git \
&& cd docker-ubuntu \
&& docker build -t pascalgrimaud/ubuntu .
```
You can build directly from the [GitHub project](https://github.com/pascalgrimaud/docker-ubuntu/) :
```
docker build -t pascalgrimaud/ubuntu github.com/pascalgrimaud/docker-ubuntu.git
```
Alternately, you can pull the image from [Docker Hub](https://registry.hub.docker.com/u/pascalgrimaud/ubuntu/) :
```
docker pull pascalgrimaud/ubuntu
```