diff options
author | Felix Lange <fjl@twurst.com> | 2015-04-23 02:52:21 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-04-23 02:52:21 +0800 |
commit | 1a0b3d8c84d7a4559b19e621656fc2a44cdb73e0 (patch) | |
tree | 74634a9f8ea2307554d1a675a741215bd872d8f7 /docker | |
parent | 5f6c8832af98d9b8529b2ab771942f1536b0b081 (diff) | |
download | go-tangerine-1a0b3d8c84d7a4559b19e621656fc2a44cdb73e0.tar.gz go-tangerine-1a0b3d8c84d7a4559b19e621656fc2a44cdb73e0.tar.zst go-tangerine-1a0b3d8c84d7a4559b19e621656fc2a44cdb73e0.zip |
Revert "refactor Dockerfile"
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 31 | ||||
-rw-r--r-- | docker/supervisord.conf | 23 |
2 files changed, 0 insertions, 54 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index b608e4ab6..000000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -FROM ubuntu:utopic -MAINTAINER caktux - -ENV DEBIAN_FRONTEND noninteractive - -# Usual update / upgrade -RUN apt-get update -RUN apt-get upgrade -q -y -RUN apt-get dist-upgrade -q -y - -# Let our containers upgrade themselves -RUN apt-get install -q -y unattended-upgrades - -# Install Ethereum -RUN apt-get install -q -y software-properties-common -RUN add-apt-repository ppa:ethereum/ethereum -RUN add-apt-repository ppa:ethereum/ethereum-dev -RUN apt-get update -RUN apt-get install -q -y geth - -# Install supervisor -RUN apt-get install -q -y supervisor - -# Add supervisor configs -ADD supervisord.conf supervisord.conf - -EXPOSE 8545 -EXPOSE 30303 - -CMD ["-n", "-c", "/supervisord.conf"] -ENTRYPOINT ["/usr/bin/supervisord"] diff --git a/docker/supervisord.conf b/docker/supervisord.conf deleted file mode 100644 index 33cba0c14..000000000 --- a/docker/supervisord.conf +++ /dev/null @@ -1,23 +0,0 @@ -[supervisord] -nodaemon=false - -[program:geth] -priority=30 -directory=/ -command=geth --rpc -user=root -autostart=true -autorestart=true -startsecs=10 -stopsignal=QUIT -stdout_logfile=/var/log/geth.log -stderr_logfile=/var/log/geth.err - -[unix_http_server] -file=%(here)s/supervisor.sock - -[supervisorctl] -serverurl=unix://%(here)s/supervisor.sock - -[rpcinterface:supervisor] -supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
\ No newline at end of file |