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
This commit is contained in:
maxlath
2025-02-27 12:18:56 +01:00
parent 10e33f919e
commit fd2fce9147

View File

@@ -12,7 +12,6 @@ services:
# Uncomment if you want to access the code: # Uncomment if you want to access the code:
# volumes: # volumes:
# - ./inventaire/server:${PROJECT_ROOT} # - ./inventaire/server:${PROJECT_ROOT}
tty: true
logging: logging:
options: options:
max-size: "10m" max-size: "10m"
@@ -29,7 +28,6 @@ services:
# - "5984:5984" # - "5984:5984"
volumes: volumes:
- 'couchdb:/opt/couchdb/data' - 'couchdb:/opt/couchdb/data'
tty: true
restart: unless-stopped restart: unless-stopped
elasticsearch: elasticsearch:
image: elasticsearch:7.17.28 image: elasticsearch:7.17.28