Skip to content

Commit a75420a

Browse files
committed
fixing issue with postgres use_volume missing config
1 parent 9ecf431 commit a75420a

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.MD

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

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+
713
## [3.3.0-rc5] - 2024-07-29
814

915
### Changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0-rc5
1+
3.3.0-rc6

mythic-docker/src/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0-rc5
1+
3.3.0-rc6

postgres-docker/.docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM postgres:15-alpine
22
COPY ["pg_hba.conf", "/var/lib/postgresql/pg_hba.conf"]
33
COPY ["configuration.sh", "/docker-entrypoint-initdb.d/configuration.sh"]
4-
COPY ["postgres.conf", "/etc/postgres.conf"]
4+
COPY ["postgres.conf", "/etc/postgresql.conf"]
55

66
HEALTHCHECK --interval=30s --timeout=30s --retries=5 --start-period=20s \
77
CMD pg_isready -d mythic_db -U mythic_user || exit 1

postgres-docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM postgres:15-alpine
22
COPY ["pg_hba.conf", "/var/lib/postgresql/pg_hba.conf"]
33
COPY ["configuration.sh", "/docker-entrypoint-initdb.d/configuration.sh"]
4-
COPY ["postgres.conf", "/etc/postgres.conf"]
4+
COPY ["postgres.conf", "/etc/postgresql.conf"]
55

66
HEALTHCHECK --interval=30s --timeout=30s --retries=5 --start-period=20s \
77
CMD pg_isready -d mythic_db -U mythic_user || exit 1

0 commit comments

Comments
 (0)