Skip to content

Commit fc52a3c

Browse files
Change Docker images versions
1 parent 9c5bfb3 commit fc52a3c

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3
1+
FROM python:3:10
22

33
ENV PYTHONUNBUFFERED=1
44

docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
# etc. To enable it, update .env, set:
77
# DOMAIN=localhost.tiangolo.com
88
proxy:
9-
image: traefik:comte
9+
image: traefik:3.1
1010
volumes:
1111
- /var/run/docker.sock:/var/run/docker.sock
1212
ports:

docker-compose.traefik.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
traefik:
3-
image: traefik:comte
3+
image: traefik:3.1
44
ports:
55
# Listen on port 80, default for HTTP, necessary to redirect to HTTPS
66
- 80:80

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22

33
db:
4-
image: postgres:16
4+
image: postgres:17
55
restart: always
66
healthcheck:
77
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 0, "build-stage", based on Node.js, to build and compile the frontend
2-
FROM node:lts AS build-stage
2+
FROM node:20 AS build-stage
33

44
WORKDIR /app
55

0 commit comments

Comments
 (0)