mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-22 06:07:50 +00:00
14248768ff
People might not be familiar with vi, it is better to have an altenative editor like nano.
10 lines
160 B
Docker
10 lines
160 B
Docker
FROM alpine:3.3
|
|
|
|
RUN apk add --update openvswitch nano && rm -rf /var/cache/apk/*
|
|
|
|
VOLUME /etc/openvswitch/
|
|
|
|
ADD boot.sh /bin/boot.sh
|
|
|
|
CMD /bin/sh /bin/boot.sh
|