Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
version: '3.7'
services:
spark-master:
image: michalklempa/spark:3.0.1-hadoop2.7
command: /master.sh
networks:
- spark
ports:
- target: 8080
published: 8080
protocol: tcp
mode: host
- target: 7077
published: 7077
protocol: tcp
mode: host
spark-worker-1:
image: michalklempa/spark:3.0.1-hadoop2.7
command: /worker.sh
networks:
- spark
spark-worker-2:
image: michalklempa/spark:3.0.1-hadoop2.7
command: /worker.sh
networks:
- spark
spark-worker-3:
image: michalklempa/spark:3.0.1-hadoop2.7
command: /worker.sh
networks:
- spark
# spark-driver:
# depends_on:
# - spark-master
# image: michalklempa/spark:3.0.1-hadoop2.7
# command: /submit.sh
# restart: on-failure
# networks:
# - spark
networks:
spark: