Commit ed46426 1 parent 63c3af0 commit ed46426 Copy full SHA for ed46426
File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## 0.2.12 - 2024-02-09
8
+
9
+ ### Changed
10
+
11
+ - Fixed a bug where postgres wasn't exposing the port properly
12
+
7
13
## 0.2.11 - 2024-02-09
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ package config
4
4
5
5
var (
6
6
// Version Mythic CLI version
7
- Version = "v0.2.11 "
7
+ Version = "v0.2.12 "
8
8
)
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ func AddMythicService(service string) {
38
38
}
39
39
if mythicEnv .GetBool ("postgres_bind_localhost_only" ) {
40
40
pStruct ["ports" ] = []string {
41
- "127.0.0.1:${POSTGRES_PORT}:${POSTGRES_PORT} " ,
41
+ "127.0.0.1:${POSTGRES_PORT}:5432 " ,
42
42
}
43
43
} else {
44
44
pStruct ["ports" ] = []string {
45
- "${POSTGRES_PORT}:${POSTGRES_PORT} " ,
45
+ "${POSTGRES_PORT}:5432 " ,
46
46
}
47
47
}
48
48
environment := []string {
You can’t perform that action at this time.
0 commit comments