diff --git a/CHANGELOG.md b/CHANGELOG.md index ce3ae62..7911ceb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,11 @@ All notable change notes in this project will be documented in this file. -## [0.1.0] - 2023-04-09 +## [0.1.0-2] - 2023-04-09 +### Changed +- `docker-compose.yml`: Changed the volume path for the `init.sql` file: + - From: `./schema.sql:/docker-entrypoint-initdb.d/schema.sql` + - To: `./init.sql:/docker-entrypoint-initdb.d/init.sql` -### First release - -- Hello Rating Orama! +### Removed +- `docker/schema.sql`: The file has been removed. The schema configuration has been moved to the `init.sql` file. diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 45af08b..baef5ba 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -23,7 +23,7 @@ services: environment: POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} volumes: - - ./schema.sql:/docker-entrypoint-initdb.d/schema.sql + - ./init.sql:/docker-entrypoint-initdb.d/schema.sql - ./data:/var/lib/postgresql/data networks: - ratingorama diff --git a/docker/schema.sql b/docker/init.sql similarity index 100% rename from docker/schema.sql rename to docker/init.sql