From 196b10fb110d7c2771b2d72cf6a0fdb7a59ee6ae Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 8 Nov 2024 10:22:00 +0000 Subject: [PATCH] move things around --- compose.yml | 4 ++-- init/init-letsencrypt.sh => init-letsencrypt.sh | 0 .../create-multiple-postgresql-databases.sh | 0 {init => scripts}/livekit-jwt-entrypoint.sh | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename init/init-letsencrypt.sh => init-letsencrypt.sh (100%) rename {data-template/postgres => scripts}/create-multiple-postgresql-databases.sh (100%) rename {init => scripts}/livekit-jwt-entrypoint.sh (100%) diff --git a/compose.yml b/compose.yml index d1c6bfd..6b41d30 100644 --- a/compose.yml +++ b/compose.yml @@ -106,7 +106,7 @@ services: restart: unless-stopped volumes: - ${VOLUME_PATH}/data/postgres:/var/lib/postgresql/data:rw - - ${VOLUME_PATH}/data-template/postgres/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/create-multiple-postgresql-databases.sh + - ${VOLUME_PATH}/scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/create-multiple-postgresql-databases.sh networks: - backend environment: @@ -306,7 +306,7 @@ services: restart: unless-stopped volumes: - ${VOLUME_PATH}/data/nginx/ssl/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt - - ${VOLUME_PATH}/init/livekit-jwt-entrypoint.sh:/entrypoint.sh + - ${VOLUME_PATH}/scripts/livekit-jwt-entrypoint.sh:/entrypoint.sh entrypoint: /entrypoint.sh env_file: .env deploy: diff --git a/init/init-letsencrypt.sh b/init-letsencrypt.sh similarity index 100% rename from init/init-letsencrypt.sh rename to init-letsencrypt.sh diff --git a/data-template/postgres/create-multiple-postgresql-databases.sh b/scripts/create-multiple-postgresql-databases.sh similarity index 100% rename from data-template/postgres/create-multiple-postgresql-databases.sh rename to scripts/create-multiple-postgresql-databases.sh diff --git a/init/livekit-jwt-entrypoint.sh b/scripts/livekit-jwt-entrypoint.sh similarity index 100% rename from init/livekit-jwt-entrypoint.sh rename to scripts/livekit-jwt-entrypoint.sh