Skip to content

Commit

Permalink
Update local image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoet-jh committed Nov 11, 2024
1 parent 6983d78 commit 07b77cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 07b77cb

Please sign in to comment.