diff --git a/README.md b/README.md index cebef5d..6fc87c7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Run command. ```bash # https://hub.docker.com/r/tttol/mos3 -docker run -p 3333:3333 -v ./upload:/app/upload -it --rm tttol:mos3 +docker run -p 3333:3333 -v ./upload:/app/upload -it --rm tttol/mos3:latest ``` Then acccess http://localhost:3333/s3 . diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..66cab45 --- /dev/null +++ b/compose.yml @@ -0,0 +1,9 @@ +version: '3.8' + +services: + mos3: + image: tttol/mos3:latest + ports: + - "3333:3333" + volumes: + - ./upload:/app/upload \ No newline at end of file