Skip to content

Commit

Permalink
upgrade postgres and node
Browse files Browse the repository at this point in the history
  • Loading branch information
António Almeida committed Oct 17, 2023
1 parent 37196d5 commit a4a5e8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# ADD app .

# Build the react app
FROM node:16-alpine
FROM node:18-alpine

WORKDIR /home/gram

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.demo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
database:
image: postgres:12
image: postgres:15
restart: unless-stopped
environment:
POSTGRES_PASSWORD: somethingsecret
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
services:
development-database:
container_name: gram-postgres
image: postgres:12
image: postgres:15
# restart: unless-stopped
environment:
POSTGRES_PASSWORD: somethingsecret
POSTGRES_USER: gram
ports:
- 127.0.0.1:5432:5432
- 5432:5432
test-database:
container_name: gram-test-postgres
image: postgres:12
image: postgres:15
# restart: unless-stopped
environment:
POSTGRES_PASSWORD: somethingsecretfortesting
POSTGRES_USER: gram-test
ports:
- 127.0.0.1:5433:5432
- 5433:5432
networks:
default:
name: gram-development

0 comments on commit a4a5e8e

Please sign in to comment.