Skip to content

Commit

Permalink
[COMMON] replace "ENV a b" by "ENV a=b"
Browse files Browse the repository at this point in the history
  • Loading branch information
chia7712 committed Jul 2, 2024
1 parent 57878cf commit 4f9718e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker/start_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ RUN chown -R $USER:$USER /opt/astraea
USER $USER
# export ENV
ENV ASTRAEA_HOME /opt/astraea
ENV ASTRAEA_HOME=/opt/astraea
WORKDIR /opt/astraea
" >"$DOCKERFILE"
}
Expand Down
4 changes: 2 additions & 2 deletions docker/start_broker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down Expand Up @@ -143,7 +143,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down
4 changes: 2 additions & 2 deletions docker/start_controller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down Expand Up @@ -131,7 +131,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down
2 changes: 1 addition & 1 deletion docker/start_hadoop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ RUN chown -R $USER:$USER /opt/hadoop
USER $USER
#export ENV
ENV HADOOP_HOME /opt/hadoop
ENV HADOOP_HOME=/opt/hadoop
WORKDIR /opt/hadoop
" >"$DOCKERFILE"
}
Expand Down
4 changes: 2 additions & 2 deletions docker/start_worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down Expand Up @@ -141,7 +141,7 @@ RUN chown -R $USER:$USER /opt/kafka
USER $USER
# export ENV
ENV KAFKA_HOME /opt/kafka
ENV KAFKA_HOME=/opt/kafka
WORKDIR /opt/kafka
" >"$DOCKERFILE"
}
Expand Down
2 changes: 1 addition & 1 deletion docker/start_zookeeper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ RUN chown -R $USER:$USER /opt/zookeeper
USER $USER
# export ENV
ENV ZOOKEEPER_HOME /opt/zookeeper
ENV ZOOKEEPER_HOME=/opt/zookeeper
WORKDIR /opt/zookeeper
" >"$DOCKERFILE"
}
Expand Down

0 comments on commit 4f9718e

Please sign in to comment.