-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: update framework to .net 8.0 #9
Conversation
umoelli
commented
Oct 2, 2024
- update framework to .net 8
- update libraries
- add new environment 'Terminfinder__dbmigrate' with the same function as the argument '--dbmigrate'
- modification of dockerfiles and docker compose, especially for postgres
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @umoelli
Danke für deine Änderungen! 🍀
Der Container für die Dev-DB ist eine gute Idee! Wir bräuchten nur noch das Script, was kopiert werden soll und dann ists echt komfortabel zu entwickeln. Danke!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @umoelli
habe noch den User umgestellt, damit der Postgres Server nicht als Root läuft und das initdb script ausgeführt.
Bei mir startet die DB nun und kann Verbindungen annehmen.
WORKDIR /app | ||
EXPOSE 5432 | ||
|
||
COPY create_user.sql /docker-entrypoint-initdb.d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WORKDIR /app | |
EXPOSE 5432 | |
COPY create_user.sql /docker-entrypoint-initdb.d | |
EXPOSE 5432 | |
COPY create_user.sql /docker-entrypoint-initdb.d | |
USER "999:999" | |
RUN initdb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unter Windows/WSL2 verursacht die Änderung eine Fehlermeldung. Da das Dockerfile nichts mit der .Net 8 Migration zu tun hat, sollten wir das Thema später betrachten.
Die Dockeranpassung läuft nicht unter Windows/WSL2 und hat vorrangig nichts mit der .Net 8 Migration zu tun (=> Änderung wird auf einen späteren Zeitpunkt verschoben)