-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (25 loc) · 828 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (25 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: "3"
services:
spring-boot-app:
build:
context:
./Backend
ports:
- "8080:8080"
- "8086:8086"
environment:
SPRING_DATASOURCE_URL: jdbc:mysql://reservista.mysql.database.azure.com:3306/ReservistaDB
SPRING_DATASOURCE_USERNAME: Reservista_Admin
SPRING_DATASOURCE_PASSWORD: )Yg#EQE$
SPRING_DATASOURCE_DRIVER_CLASS_NAME: com.mysql.cj.jdbc.Driver
SPRING_JPA_SHOW_SQL: true
networks:
- Reservista
stripe-cli:
image: stripe/stripe-cli
command: listen --forward-to spring-boot-app:8080/api/payment/webhook --events payment_intent.succeeded --api-key sk_test_51O5xO9IpHzJgrvA9mH85yoTzNH3je4DQNi7kk1oDAHbebXlpDt8E5JRB1iv84CyOOoW80zwNZow3NHi1xOXKxB9000xoFMSnpI
networks:
- Reservista
networks:
Reservista:
driver: bridge