I didn't see a docker-compose file so I created one

I hope I have put this in the right place. This is basically the suggested docker run command but in a docker-compose file with local storage instead of a persistent volume:
version: ‘3’
services:
yacy:
image: yacy/yacy_search_server
restart: always
ports:
- “8090:8090”
- “8443:8443”
volumes:
- /whereyouwantyacytostorestuff/:/opt/yacy_search_server/DATA
logging:
driver: “json-file”
options:
max-size: “200m”
max-file: “2”

volumes:
yacy:
driver: local

Thank you @zombiehoffa I may probably add your file to the release soon