diff options
| author | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-12-21 20:58:41 +0500 |
|---|---|---|
| committer | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-12-21 20:58:41 +0500 |
| commit | 6b4e9eef57bfb613f2c2a1dc4ca3edf4f333d4ec (patch) | |
| tree | a0ac9fd5fba6ebf1fd742186d5bb091847526ecc /docker/local-k8s-compose.yml | |
| parent | 75629954d1d215b3e6f7fe43024af2db137ad5ba (diff) | |
| download | seaweedfs-6b4e9eef57bfb613f2c2a1dc4ca3edf4f333d4ec.tar.xz seaweedfs-6b4e9eef57bfb613f2c2a1dc4ca3edf4f333d4ec.zip | |
k8s build
Diffstat (limited to 'docker/local-k8s-compose.yml')
| -rw-r--r-- | docker/local-k8s-compose.yml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/docker/local-k8s-compose.yml b/docker/local-k8s-compose.yml new file mode 100644 index 000000000..0dda89ca4 --- /dev/null +++ b/docker/local-k8s-compose.yml @@ -0,0 +1,65 @@ +version: '2' + +services: + master: + image: chrislusf/seaweedfs:local + ports: + - 9333:9333 + - 19333:19333 + command: "master -ip=master" + volume: + image: chrislusf/seaweedfs:local + ports: + - 8080:8080 + - 18080:18080 + command: "volume -mserver=master:9333 -port=8080 -ip=volume" + depends_on: + - master + mysql: + image: percona/percona-server:5.7 + ports: + - 3306:3306 + volumes: + - ./seaweedfs.sql:/docker-entrypoint-initdb.d/seaweedfs.sql + environment: + - MYSQL_ROOT_PASSWORD=secret + - MYSQL_DATABASE=seaweedfs + - MYSQL_PASSWORD=secret + - MYSQL_USER=seaweedfs + filer: + image: chrislusf/seaweedfs:local + ports: + - 8888:8888 + - 18888:18888 + environment: + - WEED_MYSQL_HOSTNAME=mysql + - WEED_MYSQL_PORT=3306 + - WEED_MYSQL_DATABASE=seaweedfs + - WEED_MYSQL_USERNAME=seaweedfs + - WEED_MYSQL_PASSWORD=secret + - WEED_MYSQL_ENABLED=true + - WEED_LEVELDB2_ENABLED=false + command: 'filer -master="master:9333"' + depends_on: + - master + - volume + - mysql + ingress: + image: jwilder/nginx-proxy + ports: + - "80:80" + volumes: + - /var/run/docker.sock:/tmp/docker.sock:ro + - /tmp/nginx:/etc/nginx/conf.d + s3: + image: chrislusf/seaweedfs:local + ports: + - 8333:8333 + command: 's3 -filer="filer:8888"' + depends_on: + - master + - volume + - filer + environment: + - VIRTUAL_HOST=s3 + - VIRTUAL_PORT=8333
\ No newline at end of file |
