Skip to content

Commit

Permalink
Merge pull request #18 from STRRL/fix-redis-exposed-port
Browse files Browse the repository at this point in the history
chore: redis port 6397 -> 6379
  • Loading branch information
STRRL authored Jul 16, 2024
2 parents 8666833 + e9d50d0 commit d454f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/compose/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func NewCompose(options ...Option) *Compose {
Services: map[string]Service{
fmt.Sprintf("%s_redis", dockerComposeContainerNamePrefix): {
ContainerName: fmt.Sprintf("%s_redis", dockerComposeContainerNamePrefix),
Expose: []string{"6397"},
Expose: []string{"6379"},
Image: "redis:7-alpine",
Healthcheck: Healthcheck{
Test: []string{"CMD", "redis-cli", "ping"},
Expand Down

0 comments on commit d454f0c

Please sign in to comment.