1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: travis wont let us run things on por 9000 it seems

This commit is contained in:
Carlos Alexandro Becker 2018-05-13 16:15:18 -03:00 committed by Carlos Alexandro Becker
parent 27b169ba8d
commit 242564d44b

View File

@ -63,7 +63,7 @@ func TestUpload(t *testing.T) {
S3: []config.S3{
{
Bucket: "test",
Endpoint: "http://localhost:9000",
Endpoint: "http://localhost:6000",
},
},
})
@ -99,7 +99,7 @@ func start(t *testing.T) {
if out, err := exec.Command(
"docker", "run", "-d", "--rm",
"--name", "minio",
"-p", "9000:9000",
"-p", "6000:6000",
"-v", dir+"/testdata/data:/data",
"-v", dir+"/testdata/config:/root/.minio",
"minio/minio",