Skip to content

Commit fbbf772

Browse files
committed
fix: Added some comments.
1 parent d1e4e42 commit fbbf772

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Dockerfile.tools

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ USER senzing
2525
ENV PATH="$PATH:/home/senzing/.local/bin"
2626
RUN pipx install awscli-local
2727

28-
# Define volumes necessary to support a read-only root filesystem.
28+
# Define volumes necessary to support a read-only root filesystem on ECS
29+
# Fargate.
2930
VOLUME ["/home/senzing", "/var/lib/amazon", "/var/log"]
3031

3132
WORKDIR /home/senzing

docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ services:
33
image: postgres:17.6
44
environment:
55
# See https://hub.docker.com/_/postgres
6-
# POSTGRES_DB: ${POSTGRES_DB:-G2}
76
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-senzing}
87
POSTGRES_USER: ${POSTGRES_USERNAME:-senzing}
98
healthcheck:

docker/entrypoint.d/database-init.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
# Create the database and import the Senzing schema if it doesn't already exist.
34
if psql -lqt | cut -d \| -f 1 | grep -qw G2; then
45
echo "Database has already been initialized"
56
else

docker/entrypoint.d/datasource-init.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
# Crearte data sources if SENZING_DATASOURCES environment variable is set.
34
if [[ -n "${SENZING_DATASOURCES}" ]]; then
45
echo "Creating data sources"
56
> /home/senzing/data-sources.txt

0 commit comments

Comments
 (0)