This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import re | |
from asyncio.streams import StreamReader, StreamWriter | |
from contextlib import closing | |
from typing import Tuple, Optional | |
import async_timeout | |
StreamPair = Tuple[StreamReader, StreamWriter] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
minio1: | |
image: minio/minio:latest | |
hostname: minio1 | |
volumes: | |
- /mnt/drive/minio:/export | |
networks: | |
- proxy |