mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/client"
|
|
)
|
|
|
|
func startContainer(cfg *container.Config, hostCfg *container.HostConfig, name string) (string, error) {
|
|
c, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer c.Close()
|
|
|
|
if !isDarwin {
|
|
hostCfg.NetworkMode = "host"
|
|
}
|
|
|
|
container, err := c.ContainerCreate(context.Background(), cfg, hostCfg, nil, nil, name)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if err = c.ContainerStart(context.Background(), container.ID, types.ContainerStartOptions{}); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
response, err := c.ContainerAttach(context.Background(), container.ID, types.ContainerAttachOptions{
|
|
Stdout: true,
|
|
Stderr: true,
|
|
Logs: true,
|
|
})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
go func() {
|
|
response.Reader.WriteTo(os.Stderr)
|
|
}()
|
|
|
|
return container.ID, nil
|
|
}
|
|
|
|
func cleanContainer(id string) error {
|
|
c, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer c.Close()
|
|
|
|
removeOpts := types.ContainerRemoveOptions{Force: true}
|
|
return c.ContainerRemove(context.Background(), id, removeOpts)
|
|
}
|