Created
April 12, 2017 11:52
-
-
Save cecton/2ff57b1206cee865c75af5bc18774fd1 to your computer and use it in GitHub Desktop.
Example of usage of https://github.com/jwilder/forego
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian | |
# Install Forego | |
ADD https://github.com/jwilder/forego/releases/download/v0.16.1/forego /usr/local/bin/forego | |
RUN chmod u+x /usr/local/bin/forego | |
COPY . /app/ | |
WORKDIR /app | |
CMD ["forego", "start", "-r"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo_process: bash -c "while : ;do echo foo; sleep 1; done" | |
bar_process: bash -c "while : ;do echo bar; sleep 2; done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment