Browse Source

insert token to force tracim update

Bastien Sevajol (Algoo) 8 years ago
parent
commit
e1e8d1f6de
2 changed files with 2 additions and 3 deletions
  1. 2 1
      docker/Debian_Tests/Dockerfile
  2. 0 2
      docker/Debian_Tests/entrypoint.sh

+ 2 - 1
docker/Debian_Tests/Dockerfile View File

@@ -45,7 +45,8 @@ RUN git clone https://github.com/tracim/tracim.git \
45 45
      && python3 setup.py develop \
46 46
      && cd /tracim \
47 47
      && pip3 install -r install/requirements.txt \
48
-     && pip3 install https://launchpad.net/oursql/py3k/py3k-0.9.4/+download/oursql-0.9.4.zip
48
+     && pip3 install https://launchpad.net/oursql/py3k/py3k-0.9.4/+download/oursql-0.9.4.zip \
49
+     && echo 20161216001
49 50
 
50 51
 # Copy needed files
51 52
 COPY entrypoint.sh /tracim/entrypoint.sh

+ 0 - 2
docker/Debian_Tests/entrypoint.sh View File

@@ -25,8 +25,6 @@ cp /tracim/tracim/wsgidav.conf.sample /tracim/tracim/wsgidav.conf
25 25
 
26 26
 # PostgreSQL case
27 27
 if [ "$DATABASE_TYPE" = postgresql ] ; then
28
-    # TODO: We need to increase max_connections, why ? Tracim tests don't closes connections ?
29
-    sed -i "s/\(max_connections *= *\).*/\max_connections = 300/" /etc/postgresql/9.4/main/postgresql.conf
30 28
     service postgresql start
31 29
     su - postgres -s /bin/bash -c "psql -c \"CREATE DATABASE tracim;\""
32 30
     su - postgres -s /bin/bash -c "psql -c \"ALTER USER postgres WITH PASSWORD 'dummy';\""