Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #384

Merged
merged 2 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docker-compose-deposit-invenio-rdm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.
#
# The docker-compose file to start PASS deposit services connecting to running invenioRDM docker compose.
version: '3.8'

services:
deposit-services:
Expand Down
1 change: 0 additions & 1 deletion docker-compose-deposit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.
#
# The docker-compose file to start PASS deposit services.
version: '3.8'

services:
deposit-services:
Expand Down
1 change: 0 additions & 1 deletion docker-compose-dspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# https://github.com/DSpace/dspace-angular.git
# The service definitions have been slightly modified to run within the PASS docker-compose process.
#
version: '3.8'

services:
# DSpace (backend) webapp container
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
version: '3.8'

# The base docker-compose file for eclipse-pass.org deployments
# DO NOT CALL THIS directly, instead look at specific environments
Expand Down
1 change: 0 additions & 1 deletion dspace-cli.ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# https://github.com/DSpace/DSpace/blob/main/dspace/src/main/docker-compose/cli.ingest.yml
#
# Therefore, it should be kept in sync with that file
version: "3.7"

services:
dspace-cli:
Expand Down
1 change: 0 additions & 1 deletion dspace-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# https://github.com/DSpace/DSpace/blob/main/docker-compose-cli.yml
#
# Therefore, it should be kept in sync with that file
version: "3.7"

services:
dspace-cli:
Expand Down
1 change: 0 additions & 1 deletion eclipse-pass.JHUAWSdemo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Manages the demo.eclipse-pass.org deploy
# `docker compose -f docker-compose.yml -f eclipse-pass.local.yml -f eclipse-pass.JHUAWSdemo.yml up`
version: '3.8'

services:
pass-core:
Expand Down
7 changes: 3 additions & 4 deletions eclipse-pass.local.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Env customizations for a local development instance
version: '3.8'

services:
pass-core:
Expand Down Expand Up @@ -30,7 +29,7 @@ services:
- .eclipse-pass.local_env

postgres:
image: postgres:14-alpine
image: postgres:15-alpine
restart: always
env_file:
- .env
Expand Down Expand Up @@ -93,7 +92,7 @@ services:
- back

loader:
image: curlimages/curl:7.87.0
image: curlimages/curl:8.11.0
container_name: loader
env_file:
- .env
Expand All @@ -110,7 +109,7 @@ services:

localstack:
container_name: "localstack"
image: localstack/localstack:3.2.0
image: localstack/localstack:3.8.1
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
- "127.0.0.1:4510-4559:4510-4559" # external services port range
Expand Down
1 change: 1 addition & 0 deletions postgres/demo/init_postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE USER pass WITH PASSWORD 'moo';
CREATE DATABASE pass;
ALTER DATABASE pass OWNER TO pass;
GRANT ALL PRIVILEGES ON DATABASE pass TO pass;
EOSQL
Loading