Skip to content

Commit d454f0c

Browse files
authored
Merge pull request #18 from STRRL/fix-redis-exposed-port
chore: redis port 6397 -> 6379
2 parents 8666833 + e9d50d0 commit d454f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/compose/compose.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func NewCompose(options ...Option) *Compose {
4949
Services: map[string]Service{
5050
fmt.Sprintf("%s_redis", dockerComposeContainerNamePrefix): {
5151
ContainerName: fmt.Sprintf("%s_redis", dockerComposeContainerNamePrefix),
52-
Expose: []string{"6397"},
52+
Expose: []string{"6379"},
5353
Image: "redis:7-alpine",
5454
Healthcheck: Healthcheck{
5555
Test: []string{"CMD", "redis-cli", "ping"},

0 commit comments

Comments
 (0)