mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-05 04:47:37 +03:00
Add trojan inbound/outbound
This commit is contained in:
parent
df6635c620
commit
6d78cf6b58
19 changed files with 521 additions and 9 deletions
|
@ -3,6 +3,7 @@ package main
|
|||
import (
|
||||
"context"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
|
@ -24,7 +25,7 @@ type DockerOptions struct {
|
|||
Ports []uint16
|
||||
Cmd []string
|
||||
Env []string
|
||||
Bind []string
|
||||
Bind map[string]string
|
||||
Stdin []byte
|
||||
}
|
||||
|
||||
|
@ -67,6 +68,15 @@ func startDockerContainer(t *testing.T, options DockerOptions) {
|
|||
}
|
||||
}
|
||||
|
||||
if len(options.Bind) > 0 {
|
||||
hostOptions.Binds = []string{}
|
||||
for path, internalPath := range options.Bind {
|
||||
path = filepath.Join("config", path)
|
||||
path, _ = filepath.Abs(path)
|
||||
hostOptions.Binds = append(hostOptions.Binds, path+":"+internalPath)
|
||||
}
|
||||
}
|
||||
|
||||
dockerContainer, err := dockerClient.ContainerCreate(context.Background(), &containerOptions, &hostOptions, nil, nil, "")
|
||||
require.NoError(t, err)
|
||||
t.Cleanup(func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue