summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/demo/README5
-rw-r--r--docker/demo/docker-compose.yml4
2 files changed, 6 insertions, 3 deletions
diff --git a/docker/demo/README b/docker/demo/README
index 8c7aaa5..fe0f770 100644
--- a/docker/demo/README
+++ b/docker/demo/README
@@ -72,10 +72,9 @@ Run
---
The following command starts all the services in the background,
-and manages all the restarts (FIXME: double-check this). Run it
-from this directory:
+and manages all the restarts. Run it from this directory:
- $ docker-compose up --remove-orphans -d
+ $ docker-compose up --remove-orphans -d
The ports exposed on the host by each service can be changed
via the following environment variables:
diff --git a/docker/demo/docker-compose.yml b/docker/demo/docker-compose.yml
index 0142c6c..d7af0be 100644
--- a/docker/demo/docker-compose.yml
+++ b/docker/demo/docker-compose.yml
@@ -26,6 +26,7 @@ services:
# the final "/postgresql" is used to create
# a "postgresql" subfolder in the data volume.
PGDATA: /var/lib/postgresql/data/postgresql
+ restart: always
exchange:
build: ./images/exchange
@@ -37,6 +38,7 @@ services:
- talerlogs:/logs
- talerdata:/data
- ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf
+ restart: always
merchant:
build: ./images/merchant
@@ -52,6 +54,7 @@ services:
volumes:
- talerlogs:/logs
- ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf
+ restart: always
bank:
build: ./images/libeufin
@@ -63,3 +66,4 @@ services:
- talerlogs:/logs
- talerdata:/data
- ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf
+ restart: always