diff --git a/Dockerfile b/Dockerfile
index 59511c03d6a1e726c11f9642fe87f705c8f04ce7..e9042052f00a4aa4a04a95a16125d61cc4e6b775 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
 FROM python:3.6-slim-stretch
 
 
-ENV FLASK_APP=opaque.py
+ENV FLASK_APP=nopaque.py
 
 
 RUN apt-get update \
@@ -12,23 +12,23 @@ RUN apt-get update \
  && rm -rf /var/lib/apt/lists/*
 
 
-RUN groupadd --gid 1000 --system opaque \
- && useradd --create-home --gid opaque --no-log-init --system --uid 1000 opaque
-USER opaque
-WORKDIR /home/opaque
+RUN groupadd --gid 1000 --system nopaque \
+ && useradd --create-home --gid nopaque --no-log-init --system --uid 1000 nopaque
+USER nopaque
+WORKDIR /home/nopaque
 
 
 COPY ["app", "app"]
 COPY ["migrations", "migrations"]
 COPY ["tests", "tests"]
-COPY ["config.py", "opaque.py", "requirements.txt", "./"]
+COPY ["config.py", "nopaque.py", "requirements.txt", "./"]
 RUN python -m venv venv \
  && venv/bin/pip install --requirement requirements.txt \
  && mkdir logs
 
 
 EXPOSE 5000
-VOLUME ["/home/opaque/logs", "/home/opaque/migrations"]
+VOLUME ["/home/nopaque/logs", "/home/nopaque/migrations"]
 
 
 COPY ["docker-entrypoint.sh", "/usr/local/bin/"]
diff --git a/README.md b/README.md
index dd8725789c48166970d25f8ecae645d9281c7462..6c25284c400bb2c2303e4793fd9b1ae53650bf79 100644
--- a/README.md
+++ b/README.md
@@ -72,7 +72,7 @@ echo "MAIL_SERVER=smtp.example.com" >> .env
 echo "MAIL_PORT=587" >> .env
 echo "MAIL_USE_TLS=true" >> .env
 # A user registering with this email address will automatically promoted as an admin.
-echo "OPAQUE_ADMIN=admin.opaque@example.com" >> .env
+echo "NOPAQUE_ADMIN=admin.opaque@example.com" >> .env
 # Absolut path to an existing directory to save all opaque files.
 echo "OPAQUE_STORAGE=/home/opaque/mnt/opaque" >> .env
 ```
diff --git a/app/__init__.py b/app/__init__.py
index 4b32e927fe34de570ea0cf009fbc5e7638a8cb38..3a1f54fc14b5e002a08fc4a31be30f8a502f0bd8 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -23,7 +23,7 @@ def create_app(config_name):
     db.init_app(app)
     login_manager.init_app(app)
     mail.init_app(app)
-    socketio.init_app(app, message_queue='redis://redis:6379')
+    socketio.init_app(app, message_queue='redis://redis:6379/')
 
     from . import events
 
diff --git a/app/auth/views.py b/app/auth/views.py
index 74afc4907e1b23ede76caf3052a591291cec1d18..22a1195414b5485cec94e062fb086d9e8e912d3b 100644
--- a/app/auth/views.py
+++ b/app/auth/views.py
@@ -48,7 +48,7 @@ def register():
                     username=registration_form.username.data)
         db.session.add(user)
         db.session.commit()
-        dir = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                            str(user.id))
         try:
             os.makedirs(dir)
diff --git a/app/corpora/views.py b/app/corpora/views.py
index 5f07173bd787183db4fb312e5cfe1865b1d20ae0..f2d6f83a7d81fa1c38f4a3173b70154d9e9dc4a4 100644
--- a/app/corpora/views.py
+++ b/app/corpora/views.py
@@ -23,7 +23,7 @@ def add_corpus():
                         status='unprepared', title=add_corpus_form.title.data)
         db.session.add(corpus)
         db.session.commit()
-        dir = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                            str(corpus.user_id), 'corpora', str(corpus.id))
         try:
             os.makedirs(dir)
@@ -95,7 +95,7 @@ def add_corpus_file(corpus_id):
                                         corpus_id=corpus_id))
         # Save the file
         dir = os.path.join(str(corpus.user_id), 'corpora', str(corpus.id))
-        file.save(os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        file.save(os.path.join(current_app.config['NOPAQUE_STORAGE'],
                                dir, filename))
         corpus_file = CorpusFile(author=add_corpus_file_form.author.data,
                                  corpus=corpus, dir=dir, filename=filename,
@@ -139,7 +139,7 @@ def download_corpus_file(corpus_id, corpus_file_id):
     if not (corpus_file.corpus.creator == current_user
             or current_user.is_administrator()):
         abort(403)
-    dir = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+    dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                        corpus_file.dir)
     return send_from_directory(as_attachment=True, directory=dir,
                                filename=corpus_file.filename)
diff --git a/app/email.py b/app/email.py
index fa516327585fd55a3b60081dafa87615c66e4075..a8bde7db455633badc129e1a500efeefeea957b8 100644
--- a/app/email.py
+++ b/app/email.py
@@ -10,7 +10,7 @@ def send_async_email(app, msg):
 
 
 def send_email(to, subject, template, **kwargs):
-    msg = Message('[Opaque] {}'.format(subject), recipients=[to])
+    msg = Message('[nopaque] {}'.format(subject), recipients=[to])
     msg.body = render_template(template + '.txt.j2', **kwargs)
     msg.html = render_template(template + '.html.j2', **kwargs)
     thread = Thread(target=send_async_email,
diff --git a/app/jobs/views.py b/app/jobs/views.py
index 08fd825ccb96638808a73d8702e95c643240ba70..a5bbe7231d7383aea9d9d5805383fcaf3b8855be 100644
--- a/app/jobs/views.py
+++ b/app/jobs/views.py
@@ -39,7 +39,7 @@ def download_job_input(job_id, job_input_id):
     if not (job_input.job.creator == current_user
             or current_user.is_administrator()):
         abort(403)
-    dir = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+    dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                        job_input.dir)
     return send_from_directory(as_attachment=True, directory=dir,
                                filename=job_input.filename)
@@ -54,7 +54,7 @@ def download_job_result(job_id, job_result_id):
     if not (job_result.job.creator == current_user
             or current_user.is_administrator()):
         abort(403)
-    dir = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+    dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                        job_result.dir)
     return send_from_directory(as_attachment=True, directory=dir,
                                filename=job_result.filename)
diff --git a/app/main/views.py b/app/main/views.py
index fe8ec583f154c1c44421791eebd36b8b210795da..5f20d853588505586462bab3590f1473f8aa473b 100644
--- a/app/main/views.py
+++ b/app/main/views.py
@@ -5,7 +5,7 @@ from . import main
 
 @main.route('/')
 def index():
-    return render_template('main/index.html.j2', title='Opaque')
+    return render_template('main/index.html.j2', title='nopaque')
 
 
 @main.route('/dashboard')
diff --git a/app/models.py b/app/models.py
index 87cd38dfebf8a76e70c302777e7634c6f62beb95..32f0d109fbe633fe89855791cd52eafe5476ef8e 100644
--- a/app/models.py
+++ b/app/models.py
@@ -128,7 +128,7 @@ class User(UserMixin, db.Model):
     def __init__(self, **kwargs):
         super(User, self).__init__(**kwargs)
         if self.role is None:
-            if self.email == current_app.config['OPAQUE_ADMIN']:
+            if self.email == current_app.config['NOPAQUE_ADMIN']:
                 self.role = Role.query.filter_by(name='Administrator').first()
             if self.role is None:
                 self.role = Role.query.filter_by(default=True).first()
@@ -213,7 +213,7 @@ class User(UserMixin, db.Model):
             job.delete()
         for corpus in self.corpora:
             corpus.delete()
-        path = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                             str(self.id))
         try:
             shutil.rmtree(path)
@@ -333,7 +333,7 @@ class Job(db.Model):
         while self.status != 'deleted':
             sleep(1)
             db.session.refresh(self)
-        path = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                             str(self.user_id), 'jobs', str(self.id))
         try:
             shutil.rmtree(path)
@@ -377,7 +377,7 @@ class CorpusFile(db.Model):
     corpus_id = db.Column(db.Integer, db.ForeignKey('corpora.id'))
 
     def delete(self):
-        path = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                             self.dir, self.filename)
         try:
             os.remove(path)
@@ -390,7 +390,7 @@ class CorpusFile(db.Model):
         db.session.commit()
 
     def insert_metadata(self):
-        file = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        file = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                             self.dir, self.filename)
         element_tree = ET.parse(file)
         text_node = element_tree.find('text')
@@ -437,7 +437,7 @@ class Corpus(db.Model):
     def delete(self):
         for corpus_file in self.files:
             corpus_file.delete()
-        path = os.path.join(current_app.config['OPAQUE_STORAGE_DIRECTORY'],
+        path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
                             str(self.user_id), 'corpora', str(self.id))
         try:
             shutil.rmtree(path)
diff --git a/app/services/views.py b/app/services/views.py
index 6cbf9d3910b5001a2a3c1b479c9e4398428212fe..787ebac0a4c3f7dca3e964bed8d5e2f1c34a41d7 100644
--- a/app/services/views.py
+++ b/app/services/views.py
@@ -45,7 +45,7 @@ def service(service):
         db.session.commit()
         relative_dir = os.path.join(str(job.user_id), 'jobs', str(job.id))
         absolut_dir = os.path.join(
-            current_app.config['OPAQUE_STORAGE_DIRECTORY'], relative_dir)
+            current_app.config['NOPAQUE_STORAGE'], relative_dir)
         try:
             os.makedirs(absolut_dir)
         except OSError:
diff --git a/app/static/css/opaque.css b/app/static/css/nopaque.css
similarity index 100%
rename from app/static/css/opaque.css
rename to app/static/css/nopaque.css
diff --git a/app/templates/auth/email/confirm.html.j2 b/app/templates/auth/email/confirm.html.j2
index 82ce9240745ba97dc3408746cd17a1da642021b5..a666ea7d6671173142a292c33bc11e65f98c4dac 100644
--- a/app/templates/auth/email/confirm.html.j2
+++ b/app/templates/auth/email/confirm.html.j2
@@ -3,5 +3,5 @@
 <p>Alternatively, you can paste the following link in your browser's address bar:</p>
 <p>{{ url_for('auth.confirm', token=token, _external=True) }}</p>
 <p>Sincerely,</p>
-<p>The Opaque Team</p>
+<p>The nopaque Team</p>
 <p><small>Note: replies to this email address are not monitored.</small></p>
diff --git a/app/templates/auth/email/confirm.txt.j2 b/app/templates/auth/email/confirm.txt.j2
index 6421b7d01f57d69bd57c151e4ffc1b2f8c705644..41a3f17daee54297296d03795f6d587af3d5ba3b 100644
--- a/app/templates/auth/email/confirm.txt.j2
+++ b/app/templates/auth/email/confirm.txt.j2
@@ -4,6 +4,6 @@ To confirm your account please click on the following link:
 {{ url_for('auth.confirm', token=token, _external=True) }}
 
 Sincerely,
-The Opaque Team
+The nopaque Team
 
 Note: replies to this email address are not monitored.
diff --git a/app/templates/auth/email/reset_password.html.j2 b/app/templates/auth/email/reset_password.html.j2
index 5b58a2207f8b2368ccc70a975745a71c8e5d6ebe..8b4b20e0b8dd9ca840af4a2f9fe1d00b25370a0c 100644
--- a/app/templates/auth/email/reset_password.html.j2
+++ b/app/templates/auth/email/reset_password.html.j2
@@ -4,5 +4,5 @@
 <p>{{ url_for('auth.password_reset', token=token, _external=True) }}</p>
 <p>If you have not requested a password reset simply ignore this message.</p>
 <p>Sincerely,</p>
-<p>The Opaque Team</p>
+<p>The nopaque Team</p>
 <p><small>Note: replies to this email address are not monitored.</small></p>
diff --git a/app/templates/auth/email/reset_password.txt.j2 b/app/templates/auth/email/reset_password.txt.j2
index cecc5a2448973081a83f00ec0d8fab46338789a0..deb04b14fdbbd40bbb1de6bf854d497386320547 100644
--- a/app/templates/auth/email/reset_password.txt.j2
+++ b/app/templates/auth/email/reset_password.txt.j2
@@ -8,6 +8,6 @@ If you have not requested a password reset simply ignore this message.
 
 Sincerely,
 
-The Opaque Team
+The nopaque Team
 
 Note: replies to this email address are not monitored.
diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2
index a6d4c55958c04e02ccfa08a06f6a90da4ce32dd1..04d92c74b1b7c9a57c928e43d69a8d37103c4cb6 100644
--- a/app/templates/base.html.j2
+++ b/app/templates/base.html.j2
@@ -3,14 +3,14 @@
   <head>
     <meta charset="UTF-8">
     {% if title %}
-    <title>Opaque – {{ title }}</title>
+    <title>nopaque – {{ title }}</title>
     {% else %}
-    <title>Opaque</title>
+    <title>nopaque</title>
     {% endif %}
     <link href="{{ url_for('static', filename='images/favicon.png') }}" rel="icon" type="image/png">
     <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='fonts/material-icons/material-icons.css') }}">
     <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen,projection"/>
-    <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/opaque.css') }}" media="screen,projection"/>
+    <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/nopaque.css') }}" media="screen,projection"/>
     <script src="{{ url_for('static', filename='js/add_job.js') }}"></script>
     <script src="{{ url_for('static', filename='js/jsonpatch.min.js') }}"></script>
     <script src="{{ url_for('static', filename='js/socket.io.js') }}"></script>
@@ -111,7 +111,7 @@
       <div class="navbar-fixed">
         <nav>
           <div class="nav-wrapper">
-            <a href="{{ url_for('main.index') }}" class="brand-logo center"><i class="material-icons">opacity</i>Opaque</a>
+            <a href="{{ url_for('main.index') }}" class="brand-logo center"><i class="material-icons">opacity</i>nopaque</a>
             <a href="#" data-target="slide-out" class="sidenav-trigger"><i class="material-icons">menu</i></a>
             <ul class="right hide-on-med-and-down">
               <li><a id="nav-notifications" class="dropdown-trigger no-autoinit" href="#!" data-target="nav-notifications-dropdown"><i class="material-icons">notifications</i></a></li>
@@ -130,7 +130,7 @@
       </div>
 
       <ul id="slide-out" class="sidenav sidenav-fixed">
-        <li><a href="{{ url_for('main.index') }}"><i class="material-icons">opacity</i>Opaque</a></li>
+        <li><a href="{{ url_for('main.index') }}"><i class="material-icons">opacity</i>nopaque</a></li>
         <li><a href="#"><i class="material-icons">linear_scale</i>Workflow</a></li>
         <li><a href="{{ url_for('main.dashboard') }}"><i class="material-icons">dashboard</i>Dashboard</a></li>
         <li><div class="divider"></div></li>
diff --git a/app/templates/main/index.html.j2 b/app/templates/main/index.html.j2
index 2abd190cca4491f7abad3974536497fac1979f61..b303666f43b6459f4b210831d014bb9917b41594 100644
--- a/app/templates/main/index.html.j2
+++ b/app/templates/main/index.html.j2
@@ -2,7 +2,7 @@
 
 {% block page_content %}
 <div class="col s12 m4">
-  <h3>Opaque?</h3>
+  <h3>nopaque?</h3>
   <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,</p>
 </div>
 
diff --git a/config.py b/config.py
index 737d56681f9dc7a8884b14715c81cdcfe94fd23f..296316cf4694f440789b7fe3768a8a6de05d40b8 100644
--- a/config.py
+++ b/config.py
@@ -18,8 +18,8 @@ class Config:
     SQLALCHEMY_TRACK_MODIFICATIONS = False
 
     ''' ### Opaque ### '''
-    OPAQUE_ADMIN = os.environ.get('OPAQUE_ADMIN')
-    OPAQUE_STORAGE_DIRECTORY = '/mnt/opaque'
+    NOPAQUE_ADMIN = os.environ.get('NOPAQUE_ADMIN')
+    NOPAQUE_STORAGE = '/mnt/nopaque'
 
     @staticmethod
     def init_app(app):
diff --git a/dind_swarm.yml b/dind_swarm.yml
index 9bb160dd27bdb7320471e90281807c6a32b78eaf..e278c1921eaf1895f8a9b1519e37acb32a2720a8 100644
--- a/dind_swarm.yml
+++ b/dind_swarm.yml
@@ -2,13 +2,13 @@ version: '3'
 
 services:
   storage:
-    command: ["-p", "-s", "opaque_storage;/srv/opaque/storage;no;no;no;opaque", "-u", "opaque;opaque"]
+    command: ["-p", "-s", "storage.nopaque;/srv/nopaque/storage;no;no;no;nopaque", "-u", "nopaque;nopaque"]
     image: dperson/samba:latest
     ports:
       - 445:445
     restart: on-failure
     volumes:
-      - /srv/opaque/storage:/srv/opaque/storage
+      - /srv/nopaque/storage:/srv/nopaque/storage
   worker:
     image: docker:dind
     ports:
@@ -16,7 +16,7 @@ services:
     privileged: true
     restart: on-failure
     volumes:
-      - /mnt/opaque:/mnt/opaque
+      - /mnt/nopaque:/mnt/nopaque
   viz:
     image: dockersamples/visualizer:latest
     ports:
diff --git a/dind_swarm_setup.sh b/dind_swarm_setup.sh
index 7ddc9abce3cd82143af25276594d38a90d288f6c..7c134297790d8223fe272989e4e58433eb98f994 100755
--- a/dind_swarm_setup.sh
+++ b/dind_swarm_setup.sh
@@ -17,9 +17,9 @@ docker-compose --file dind_swarm.yml up --detach storage
 sleep 3
 
 echo "Mount network storage to host system..."
-sudo mkdir -p /mnt/opaque
-sudo umount /mnt/opaque
-sudo mount -t cifs -o gid=${USER},password=opaque,uid=${USER},user=opaque,vers=3.0 //localhost/opaque_storage /mnt/opaque
+sudo mkdir -p /mnt/nopaque
+sudo umount /mnt/nopaque
+sudo mount -t cifs -o gid=${USER},password=nopaque,uid=${USER},user=nopaque,vers=3.0 //localhost/storage.nopaque /mnt/nopaque
 
 echo "Start worker service(s)"
 docker-compose --file dind_swarm.yml up --detach --scale worker=${SWARM_WORKER_NUMBER} worker viz
diff --git a/docker-compose.yml b/docker-compose.yml
index 8993aed7e7670cc2c042cd5ab205a59fe91b27a2..2c04daa46be283b8f67ed7b53470f9bfe67e505d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -12,15 +12,15 @@ services:
     ports:
       - 5000:5000
     volumes:
-      - /mnt/opaque:/mnt/opaque
-      - ./app:/home/opaque/app
-      - ./logs:/home/opaque/logs
-      - ./migrations:/home/opaque/migrations
-      - ./tests:/home/opaque/tests
-      - ./config.py:/home/opaque/config.py
+      - /mnt/nopaque:/mnt/nopaque
+      - ./app:/home/nopaque/app
+      - ./logs:/home/nopaque/logs
+      - ./migrations:/home/nopaque/migrations
+      - ./tests:/home/nopaque/tests
+      - ./config.py:/home/nopaque/config.py
       - ./docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh
-      - ./opaque.py:/home/opaque/opaque.py
-      - ./requirements.txt:/home/opaque/requirements.txt
+      - ./nopaque.py:/home/nopaque/nopaque.py
+      - ./requirements.txt:/home/nopaque/requirements.txt
   daemon:
     depends_on:
       - db
@@ -29,17 +29,17 @@ services:
       - web.env
     image: gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/opaque_daemon:latest
     volumes:
-      - /mnt/opaque:/mnt/opaque
-      - ./logs:/home/opaque_daemon/logs
+      - /mnt/nopaque:/mnt/nopaque
+      - ./logs:/home/nopaqued/logs
       - ../opaque_daemon/docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh
-      - ../opaque_daemon/opaque_daemon.py:/home/opaque_daemon/opaque_daemon.py
-      - ../opaque_daemon/merge_corpus_files.py:/home/opaque_daemon/merge_corpus_files.py
-      - ../opaque_daemon/requirements.txt:/home/opaque_daemon/requirements.txt
-      - $HOME/.docker/config.json:/home/opaque_daemon/.docker/config.json
+      - ../opaque_daemon/nopaqued.py:/home/nopaqued/opaque_daemon.py
+      - ../opaque_daemon/merge_corpus_files.py:/home/nopaqued/merge_corpus_files.py
+      - ../opaque_daemon/requirements.txt:/home/nopaqued/requirements.txt
+      - $HOME/.docker/config.json:/home/nopaqued/.docker/config.json
   db:
     env_file: db.env
     image: postgres:11
     volumes:
-      - /srv/opaque/database:/var/lib/postgresql/data
+      - /srv/nopaque/database:/var/lib/postgresql/data
   redis:
     image: redis:5
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 3abf7198da41737837fa7127ffb2086d3022bfdb..dd7c6d6ffa2d77c999b8876fb7a533ac74227e0a 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -7,7 +7,7 @@ wait-for-it redis:6379 --strict --timeout=0
 
 if [ $# -eq 0 ]
 then
-    venv/bin/python -u opaque.py
+    venv/bin/python -u nopaque.py
 elif [ $1 == "flask" ]
 then
     echo "$@"
diff --git a/docker_stack_deploy.yml b/docker_stack_deploy.yml
index 62dc689d0889bf9140b4b4e3d1604259ec574f92..5a5188f35d3d050d0b202f66228c4eeb2608231b 100644
--- a/docker_stack_deploy.yml
+++ b/docker_stack_deploy.yml
@@ -6,6 +6,10 @@ services:
       placement:
         constraints:
           - node.role == manager
+      labels:
+        - com.docker.lb.hosts=nopaque
+        - com.docker.lb.port=8080
+        - com.docker.lb.sticky_session_cookie=session
     env_file:
       - db.env
       - web.env
@@ -13,8 +17,8 @@ services:
     ports:
       - 5000:5000
     volumes:
-      - storage:/mnt/opaque
-      - ./logs:/home/opaque/logs
+      - /mnt/nopaque:/mnt/nopaque
+      - ./logs:/home/nopaque/logs
   daemon:
     deploy:
       placement:
@@ -25,29 +29,21 @@ services:
       - web.env
     image: gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/opaque_daemon:latest
     volumes:
-      - storage:/mnt/opaque
-      - ./logs:/home/opaque_daemon/logs
-      - $HOME/.docker/config.json:/home/opaque_daemon/.docker/config.json
+      - /mnt/nopaque:/mnt/nopaque
+      - ./logs:/home/nopaqued/logs
+      - $HOME/.docker/config.json:/home/nopaqued/.docker/config.json
   db:
     deploy:
       placement:
         constraints:
           - node.role == manager
     env_file: db.env
-    image: postgres:11-alpine
+    image: postgres:11
     volumes:
-      - /srv/opaque/database:/var/lib/postgresql/data
+      - /srv/nopaque/database:/var/lib/postgresql/data
   redis:
     deploy:
       placement:
         constraints:
           - node.role == manager
-    image: redis:alpine
-
-volumes:
-  storage:
-    driver: local
-    driver_opts:
-      device: "//127.0.0.1/opaque_storage"
-      o: "gid=1000,password=opaque,uid=1000,username=opaque"
-      type: cifs
+    image: redis:5
diff --git a/opaque.py b/nopaque.py
similarity index 100%
rename from opaque.py
rename to nopaque.py
diff --git a/web.env.tpl b/web.env.tpl
index 274698b77e8c4fadccff3631e2cb44ae08bc0088..09209c7e6dd9efd12f1b09b04595e7643fa0a22a 100644
--- a/web.env.tpl
+++ b/web.env.tpl
@@ -10,5 +10,5 @@ MAIL_USERNAME=username@example.com
 MAIL_PASSWORD=password
 MAIL_DEFAULT_SENDER=username@example.com
 
-### Opaque ###
-OPAQUE_ADMIN=admin.opaque@example.com
+### nopaque ###
+NOPAQUE_ADMIN=admin.opaque@example.com