ci: ajout de la pipeline Gitea Actions et configuration de l'application dans docker-compose
AS Talange CI/CD Pipeline / Build & Run in Docker Container (push) Has been cancelled
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Has been cancelled

This commit is contained in:
2026-05-30 23:24:32 +02:00
parent 8a15139efb
commit 7743a220ef
2 changed files with 55 additions and 0 deletions
+16
View File
@@ -23,5 +23,21 @@ services:
depends_on:
- db
app:
build:
context: .
dockerfile: Dockerfile
container_name: astalange_app
ports:
- "8080:8080"
environment:
- SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/astalange
- SPRING_DATASOURCE_USERNAME=myuser
- SPRING_DATASOURCE_PASSWORD=mypassword
depends_on:
- db
restart: always
volumes:
postgres_data: