chore(docker): dockerize app, add workflow to push image on gitea registry
Some checks failed
Build and Push Docker Images / Build app image (push) Failing after 3m4s
Build and Push Docker Images / Build database image (push) Failing after 15s

This commit is contained in:
thibaud-leclere
2026-03-28 09:22:47 +01:00
parent a196fac6c6
commit 21b0f681be
12 changed files with 285 additions and 84 deletions

View File

@@ -1,10 +1,10 @@
parameters:
postgres_version: "16"
postgres_host: "127.0.0.1"
postgres_port: "5432"
postgres_db: "app"
postgres_user: "app"
postgres_password: "pwd"
postgres_version: "%env(POSTGRES_VERSION)%"
postgres_host: "%env(POSTGRES_HOST)%"
postgres_port: "%env(int:POSTGRES_PORT)%"
postgres_db: "%env(POSTGRES_DB)%"
postgres_user: "%env(POSTGRES_USER)%"
postgres_password: "%env(POSTGRES_PASSWORD)%"
tmdb_host: "https://api.themoviedb.org/3"