Use -h to specify hostname + disabled hubspot + fix missing locales from upstream

remotes/origin/no-uploadlimit-63
Stefan Verhoeven 8 years ago
parent 92e894a1b3
commit bc71a1bf83

@ -6,12 +6,14 @@ MAINTAINER Stefan Verhoeven <s.verhoeven@esciencecenter.nl>
# Configuring locales
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y -q apt-utils && apt-get install -y -q locales && dpkg-reconfigure locales && \
locale-gen en_US.UTF-8 && \
update-locale LANG=en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN useradd -m -d /home/cartodb -s /bin/bash cartodb && \
apt-get update && \
apt-get install -y -q \
build-essential \
autoconf \
@ -90,14 +92,9 @@ RUN useradd -m -d /home/cartodb -s /bin/bash cartodb && \
wget \
nginx-light \
net-tools \
locales \
--no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN dpkg-reconfigure locales && \
locale-gen en_US.UTF-8 && \
update-locale LANG=en_US.UTF-8
RUN git config --global user.email you@example.com
RUN git config --global user.name "Your Name"

@ -27,7 +27,7 @@ How to run the container:
-------------------------
```
docker run -d -p 80:80 sverhoeven/cartodb
docker run -d -p 80:80 -h cartodb.localhost sverhoeven/cartodb
```
The CartoDB instance has been configured with the hostname `cartodb.localhost`, this means the web browser and web server need to be able to resolve `cartodb.localhost` to an IP adress of the machine where the web server is running.
@ -42,7 +42,7 @@ How to use a different hostname:
For example to use `cartodb.example.com` as a hostname start with:
```
docker run -d -p 80:80 -e CARTO_HOST=cartodb.example.com sverhoeven/cartodb
docker run -d -p 80:80 -h cartodb.example.com sverhoeven/cartodb
```
The chosen hostname should also resolve to an IP adress of the machine where the web server is running.

@ -77,8 +77,8 @@ defaults: &defaults
api_key:
metrics:
hubspot:
events_host: 'http://track.hubspot.com'
token: 'yourtoken'
events_host: ''
token: ''
form_ids:
newsletter: ''
event_ids:

@ -1,7 +1,6 @@
#!/bin/bash
CARTO_HOST=${CARTO_HOST=cartodb.localhost}
perl -pi -e 's/cartodb\.localhost/$ENV{"CARTO_HOST"}/g' /etc/nginx/sites-enabled/default /cartodb/config/app_config.yml /Windshaft-cartodb/config/environments/development.js
perl -pi -e 's/cartodb\.localhost/$ENV{"HOSTNAME"}/g' /etc/nginx/sites-enabled/default /cartodb/config/app_config.yml /Windshaft-cartodb/config/environments/development.js
service postgresql start
service redis-server start

Loading…
Cancel
Save