aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/container.go
blob: 3128a8ecdd5983fffe0a72fe35c893cd106ccdb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package main

import (
	"fmt"

	"github.com/edwarnicke/exechelper"
)

type Container struct {
	name string
}

func (c *Container) run() error {
	if c.name == "" {
		return fmt.Errorf("create volume failed: container name is blank")
	}

	exechelper.Run(fmt.Sprintf("mkdir -p /tmp/%s/sync", c.name))
	syncPath := fmt.Sprintf("-v /tmp/%s/sync:/tmp/sync", c.name)
	cmd := "docker run --cap-add=all -d --privileged --network host --rm "
	cmd += syncPath
	cmd += " --name " + c.name + " hs-test/vpp"
	fmt.Println(cmd)
	err := exechelper.Run(cmd)
	if err != nil {
		return fmt.Errorf("create volume failed: %s", err)
	}

	return nil
}