ローカルネットワークでファイルを配信する目的で使用するdocker-composeファイルです。
docker-compose.yml
と同じ階層にsync
ディレクトリを作成し、その中に配信したいファイルを配置します。
起動するには以下のコマンドを実行します。
$ docker-compose up -d
ファイルをダウンロードするには、<IPアドレス>:8080/<ファイル名>
にアクセスします。
docker-compose.yml
内で以下の項目の設定を変更できます
- ポート
- 配信するファイルを配置するディレクトリ
nginxのイメージを利用しています。
This is a docker-compose file for to provide any files in local network.
Make a directory that is named sync
into directory that same as docker-compose.yml
.
Deploy into it your files to provide.
To up it, run this command on your terminal.
$ docker-compose up -d
To download the files, accress to URL <Your ip address>:8080/<filename>
.
You can edit these settings in docker-compose.yml
.
- Port
- Directory that files to provide deployed into
It use the image of nginx.