summaryrefslogtreecommitdiff
path: root/docker/taler-full/Dockerfile
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-17 21:20:12 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-17 21:20:12 +0100
commit21c6b40156db5a505215d4ce57fcab0ff6691300 (patch)
tree9dd8b61796c86e1b6694406ad3660cf64d00ce09 /docker/taler-full/Dockerfile
parentbe061b4da9a8850412c216bdf49589e6951527c5 (diff)
downloaddeployment-21c6b40156db5a505215d4ce57fcab0ff6691300.tar.gz
deployment-21c6b40156db5a505215d4ce57fcab0ff6691300.tar.bz2
deployment-21c6b40156db5a505215d4ce57fcab0ff6691300.zip
move unmaintained files to historic/
Diffstat (limited to 'docker/taler-full/Dockerfile')
-rw-r--r--docker/taler-full/Dockerfile59
1 files changed, 0 insertions, 59 deletions
diff --git a/docker/taler-full/Dockerfile b/docker/taler-full/Dockerfile
deleted file mode 100644
index ac01271..0000000
--- a/docker/taler-full/Dockerfile
+++ /dev/null
@@ -1,59 +0,0 @@
-FROM debian:jessie
-
-ENV PREFIX=/usr
-
-RUN apt-get update && apt-get install -y \
- git subversion \
- make \
- autoconf autopoint libtool texinfo \
- libgcrypt-dev libidn11-dev zlib1g-dev libunistring-dev \
- libjansson-dev \
- libsqlite3-dev \
- libpq-dev postgresql \
- python3-pip \
- \
- && \
- rm -rf /var/lib/apt/lists/*
-
-RUN pip3 install -U pip
-
-RUN git clone git://taler.net/deployment \
- && \
- deployment/bootstrap-hybrid
-
-RUN $HOME/deployment/taler-build/invalidate.sh \
- && \
- cd $HOME/deployment/taler-build && make;
-
-# cannot get $HOME to work
-ENV PATH=/root/local/bin:$PATH
-
-RUN taler-config-generate -e -m -C PUDOS -m -e -w test \
- --bank-url https://bank.test.taler.net \
- --exchange-bank-account 2 \
- --merchant-bank-account 3 \
- --trusted
-
-RUN service postgresql start \
- && \
- su -c 'psql -c "CREATE ROLE root WITH SUPERUSER LOGIN"' postgres \
- && \
- su -c 'psql -c "CREATE DATABASE taler WITH OWNER root"' postgres \
- && \
- su -c 'psql -c "CREATE DATABASE talermerchant WITH OWNER root"' postgres
-
-RUN printf '#!/bin/bash \n \
- taler-exchange-keyup \
- && taler-exchange-keycheck \
- && service postgresql start \
- && taler-exchange-dbinit \
- && taler-exchange-httpd' > $HOME/local/bin/launch_exchange \
- && \
- chmod +x $HOME/local/bin/launch_exchange.sh
-
-RUN printf '#!/bin/bash \n \
- service postgresql start \
- && \
- taler-merchant-httpd' > $HOME/local/bin/launch_merchant \
- && \
- chmod +x $HOME/local/bin/launch_merchant.sh