mirror of https://github.com/fspc/bikebike.git
Jonathan Rosenbaum
8 years ago
2 changed files with 14 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
FROM ubuntu:16.04 |
|||
MAINTAINER Jonathan Rosenbaum <gnuser@gmail.com> |
|||
|
|||
# Not all applications use mysql, but nevertheless. |
|||
RUN export DEBIAN_FRONTEND="noninteractive"; echo "mysql-server-5.7 mysql-server/root_password password" | debconf-set-selections; echo "mysql-server-5.7 mysql-server/root_password_again password" | debconf-set-selections; apt-get update && apt-get -y install mysql-server git supervisor ruby make libmysqlclient-dev ruby-dev |
|||
|
|||
COPY supervisord.conf /etc/supervisor/supervisord.conf |
|||
|
|||
#docker run -dt --name=test-ubuntu ubuntu:16.04 |
@ -0,0 +1,5 @@ |
|||
[supervisord] |
|||
nodaemon=true |
|||
|
|||
[include] |
|||
files = /etc/supervisor/conf.d/*.conf |
Loading…
Reference in new issue