Add depsim/vppsim containers. (#15)

(cherry picked from commit 830b264)
This commit is contained in:
mosen
2016-10-07 09:58:40 +11:00
committed by GitHub
parent 98df3c11a9
commit a9959f7e30
4 changed files with 20 additions and 0 deletions

1
.docker/depsim/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
depsim

View File

@@ -0,0 +1,9 @@
# depsim container
FROM ubuntu:14.04
ADD depsim /usr/bin
RUN mkdir /etc/depsim
EXPOSE 8080
VOLUME ["/etc/depsim"]
ENTRYPOINT ["depsim"]
CMD ["start"]

1
.docker/vppsim/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
vppsim

View File

@@ -0,0 +1,9 @@
# vppsim container
FROM ubuntu:14.04
ADD vppsim /usr/bin
RUN mkdir /etc/vppsim
EXPOSE 8080
VOLUME ["/etc/vppsim"]
ENTRYPOINT ["vppsim"]
CMD ["start"]