Created
July 20, 2020 19:35
-
-
Save stevenanthonyrevo/43226801109003c6062ab38b193b3959 to your computer and use it in GitHub Desktop.
Ubuntu Docker Example with supervisord.conf
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 ubuntu:18.04 | |
| RUN apt-get update && \ | |
| apt-get install -y supervisor && \ | |
| apt-get clean | |
| RUN mkdir -p /var/log/supervisor | |
| COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf | |
| EXPOSE 8089 | |
| CMD ["/usr/bin/supervisord"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment