Skip to content

Instantly share code, notes, and snippets.

@stevenanthonyrevo
Created July 20, 2020 19:35
Show Gist options
  • Select an option

  • Save stevenanthonyrevo/43226801109003c6062ab38b193b3959 to your computer and use it in GitHub Desktop.

Select an option

Save stevenanthonyrevo/43226801109003c6062ab38b193b3959 to your computer and use it in GitHub Desktop.
Ubuntu Docker Example with supervisord.conf
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