From fd2fce9147266042c01ee2dc919564161b7496e5 Mon Sep 17 00:00:00 2001 From: maxlath Date: Thu, 27 Feb 2025 12:18:56 +0100 Subject: [PATCH] docker-compose: remove tty=true as it seems unnecessary for our use-case See https://docs.docker.com/reference/compose-file/services/#tty and https://docs.docker.com/reference/cli/docker/container/run/#tty --- docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 72da459..be6eabc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,6 @@ services: # Uncomment if you want to access the code: # volumes: # - ./inventaire/server:${PROJECT_ROOT} - tty: true logging: options: max-size: "10m" @@ -29,7 +28,6 @@ services: # - "5984:5984" volumes: - 'couchdb:/opt/couchdb/data' - tty: true restart: unless-stopped elasticsearch: image: elasticsearch:7.17.28