You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.4 KiB
88 lines
2.4 KiB
services:
|
|
seaweedfs-master:
|
|
build:
|
|
context: ../../../docker
|
|
dockerfile: Dockerfile.local
|
|
image: seaweedfs:local
|
|
container_name: seaweedfs-spark-master
|
|
ports:
|
|
- "9333:9333"
|
|
- "19333:19333"
|
|
command: "master -ip=seaweedfs-master -ip.bind=0.0.0.0 -port=9333 -port.grpc=19333 -volumeSizeLimitMB=50 -defaultReplication=000 -peers=none"
|
|
networks:
|
|
- seaweedfs-spark
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:9333/cluster/status"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
seaweedfs-volume:
|
|
build:
|
|
context: ../../../docker
|
|
dockerfile: Dockerfile.local
|
|
image: seaweedfs:local
|
|
container_name: seaweedfs-spark-volume
|
|
ports:
|
|
- "8080:8080"
|
|
- "18080:18080"
|
|
command: "volume -mserver=seaweedfs-master:9333 -ip=127.0.0.1 -ip.bind=0.0.0.0 -port=8080 -port.grpc=18080 -publicUrl=127.0.0.1:8080 -preStopSeconds=1"
|
|
depends_on:
|
|
seaweedfs-master:
|
|
condition: service_healthy
|
|
networks:
|
|
- seaweedfs-spark
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8080/status"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
seaweedfs-filer:
|
|
build:
|
|
context: ../../../docker
|
|
dockerfile: Dockerfile.local
|
|
image: seaweedfs:local
|
|
container_name: seaweedfs-spark-filer
|
|
ports:
|
|
- "8888:8888"
|
|
- "18888:18888"
|
|
command: "filer -master=seaweedfs-master:9333 -ip=seaweedfs-filer -ip.bind=0.0.0.0 -port=8888 -port.grpc=18888"
|
|
depends_on:
|
|
seaweedfs-master:
|
|
condition: service_healthy
|
|
seaweedfs-volume:
|
|
condition: service_healthy
|
|
networks:
|
|
- seaweedfs-spark
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8888/"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 15s
|
|
|
|
spark-tests:
|
|
image: maven:3.9-eclipse-temurin-17
|
|
container_name: seaweedfs-spark-tests
|
|
network_mode: "host"
|
|
volumes:
|
|
- .:/workspace
|
|
- ~/.m2:/root/.m2
|
|
working_dir: /workspace
|
|
environment:
|
|
- SEAWEEDFS_TEST_ENABLED=true
|
|
- SEAWEEDFS_FILER_HOST=localhost
|
|
- SEAWEEDFS_FILER_PORT=8888
|
|
- SEAWEEDFS_FILER_GRPC_PORT=18888
|
|
- HADOOP_HOME=/tmp
|
|
command: sh -c "sleep 30 && mvn test"
|
|
mem_limit: 4g
|
|
cpus: 2
|
|
|
|
networks:
|
|
seaweedfs-spark:
|
|
driver: bridge
|
|
|