1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-06 14:25:31 +02:00

Add dockerui server files and Dockerfile

This commit is contained in:
Michael Crosby 2013-06-22 10:10:22 -09:00
parent 38f859f52d
commit 877effc6ad
4 changed files with 95 additions and 2 deletions

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
# Dockerfile for DockerUI
FROM ubuntu
MAINTAINER Michael Crosby http://crosbymichael.com
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade
ADD . /dockerui
EXPOSE 9000:9000