Commit a75420a 1 parent 9ecf431 commit a75420a Copy full SHA for a75420a
File tree 5 files changed +10
-4
lines changed
5 files changed +10
-4
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] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 3.3.0-rc6] - 2024-07-29
8
+
9
+ ### Changed
10
+
11
+ - Fixed a Docker copy with postgres based on https://github.com/its-a-feature/Mythic/issues/393 when use_volume is true
12
+
7
13
## [ 3.3.0-rc5] - 2024-07-29
8
14
9
15
### Changed
Original file line number Diff line number Diff line change 1
- 3.3.0-rc5
1
+ 3.3.0-rc6
Original file line number Diff line number Diff line change 1
- 3.3.0-rc5
1
+ 3.3.0-rc6
Original file line number Diff line number Diff line change 1
1
FROM postgres:15-alpine
2
2
COPY ["pg_hba.conf" , "/var/lib/postgresql/pg_hba.conf" ]
3
3
COPY ["configuration.sh" , "/docker-entrypoint-initdb.d/configuration.sh" ]
4
- COPY ["postgres.conf" , "/etc/postgres .conf" ]
4
+ COPY ["postgres.conf" , "/etc/postgresql .conf" ]
5
5
6
6
HEALTHCHECK --interval=30s --timeout=30s --retries=5 --start-period=20s \
7
7
CMD pg_isready -d mythic_db -U mythic_user || exit 1
Original file line number Diff line number Diff line change 1
1
FROM postgres:15-alpine
2
2
COPY ["pg_hba.conf" , "/var/lib/postgresql/pg_hba.conf" ]
3
3
COPY ["configuration.sh" , "/docker-entrypoint-initdb.d/configuration.sh" ]
4
- COPY ["postgres.conf" , "/etc/postgres .conf" ]
4
+ COPY ["postgres.conf" , "/etc/postgresql .conf" ]
5
5
6
6
HEALTHCHECK --interval=30s --timeout=30s --retries=5 --start-period=20s \
7
7
CMD pg_isready -d mythic_db -U mythic_user || exit 1
You can’t perform that action at this time.
0 commit comments