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:
# 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