Skip to content

Commit

Permalink
Merge pull request #16 from anarkiwi/rel
Browse files Browse the repository at this point in the history
stage 0.1.1.
  • Loading branch information
cglewis authored May 21, 2020
2 parents 79973c0 + 1872c5a commit a3b1bdc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# v0.1.1 (2020-05-21)

- Initial release (fork from https://github.com/gopher-net/docker-ovs-plugin).
- Can create both NAT and flat networks and can add existing ports to a bridge/network
- Does not yet support fixed OFPort allocations for containers.
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ services:
tty: true
privileged: true
command: -d
depends_on:
- ovs

ovs:
restart: always
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
version = "0.1.0"
version = "0.1.1"
)

func main() {
Expand Down
1 change: 1 addition & 0 deletions openvswitch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ ADD configure-ovs.sh /usr/local/share/openvswitch/
RUN ovsdb-tool create /etc/openvswitch/conf.db /usr/local/share/openvswitch/vswitch.ovsschema
ADD scripts /scripts
CMD ["/usr/bin/supervisord"]
HEALTHCHECK --interval=30s --timeout=5s CMD ovs-vsctl show

0 comments on commit a3b1bdc

Please sign in to comment.