sha256:7027f62114d02ffd62c7dfbf59ce6175bd6a3470affa0a941e65b1e731f89bc6
Last pushed
over 1 year by tempusfugit04
Type
Compose
Manifest digest
sha256:7027f62114d02ffd62c7dfbf59ce6175bd6a3470affa0a941e65b1e731f89bc6
services:
db:
image: mysql:9.2
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: moviesapp
volumes:
- db_data:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
interval: 5s
timeout: 5s
retries: 10
ports:
- "3306:3306"
web:
image: tempusfugit04/practica_grupo17:1.0.0
ports:
- "8443:8443"
environment:
SPRING_DATASOURCE_URL: jdbc:mysql://db:3306/moviesapp
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD: root
depends_on:
db:
condition: service_healthy
volumes:
db_data:
docker compose -f oci://tempusfugit04/practica_grupo17-compose:1.0.0 upUse the above command to pull and run the Compose file. Learn more.
MySQL is a widely used, open-source relational database management system (RDBMS).
Pulls
1B+
Stars
16189
Last Updated
9 days