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 some container versions in Docker #1318

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3990211
Update docker-compose.yml
javadzarezadeh Jul 23, 2024
3c62b96
Merge branch 'master' into patch-1
javadzarezadeh Aug 4, 2024
95d363c
Update some docker container versions
javadzarezadeh Aug 4, 2024
c55feee
update uvicorn-gunicorn-fastapi
javadzarezadeh Aug 5, 2024
344fccf
Merge branch 'fastapi:master' into patch-1
javadzarezadeh Aug 18, 2024
aa400af
Merge branch 'fastapi:master' into patch-1
javadzarezadeh Aug 26, 2024
3623be7
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 1, 2024
9c0d854
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 3, 2024
b3e96e7
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 9, 2024
5cf39d1
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 14, 2024
a0c0691
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 17, 2024
505d6d7
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 20, 2024
d884057
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 21, 2024
de70316
Merge branch 'master' into upgrade-docker
javadzarezadeh Sep 22, 2024
ca950da
Update python version to latest stable version 3
javadzarezadeh Sep 22, 2024
e6e1ef3
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 24, 2024
e75b552
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 24, 2024
2d1cb93
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Sep 27, 2024
9c5bfb3
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Oct 14, 2024
fc52a3c
Change Docker images versions
javadzarezadeh Oct 14, 2024
4016766
Fix Python version
javadzarezadeh Oct 14, 2024
853d8f7
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Nov 2, 2024
e39fcf4
Upgrade Traefik to v3.2
javadzarezadeh Dec 29, 2024
87f8030
Merge branch 'fastapi:master' into upgrade-docker
javadzarezadeh Dec 29, 2024
5d76b9a
Merge branch 'upgrade-docker' of https://github.com/javadzarezadeh/fu…
javadzarezadeh Dec 29, 2024
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
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10
FROM python:3
javadzarezadeh marked this conversation as resolved.
Show resolved Hide resolved

ENV PYTHONUNBUFFERED=1

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
# etc. To enable it, update .env, set:
# DOMAIN=localhost.tiangolo.com
proxy:
image: traefik:3.0
image: traefik:comte
javadzarezadeh marked this conversation as resolved.
Show resolved Hide resolved
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.traefik.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
traefik:
image: traefik:3.0
image: traefik:comte
ports:
# Listen on port 80, default for HTTP, necessary to redirect to HTTPS
- 80:80
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

db:
image: postgres:12
image: postgres:16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! 🚀

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that Postgres has officially released version 17 four days ago. Should I stick to 16 or upgrade it to 17?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you were working on more importatn tasks (perfect SQLModel Documentation, by the way!😉), I changed it to 17 without your permission! Sorry for that. If you still wish to use 16, just tell me to change it.

restart: always
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 0, "build-stage", based on Node.js, to build and compile the frontend
FROM node:20 AS build-stage
FROM node:lts AS build-stage
javadzarezadeh marked this conversation as resolved.
Show resolved Hide resolved

WORKDIR /app

Expand Down