Sign inSign up

maes95/spring-webapp-compose:0.1.0

Manifest digest

sha256:de119a8edb99aac11d36c589b8c47503674f08dbda01c6695d48f558ead030b5

Last pushed

11 months by maes95

Type

Compose

Manifest digest

sha256:de119a8edb99aac11d36c589b8c47503674f08dbda01c6695d48f558ead030b5

Compose file content

services: 
  web:
    image: codigusdev/spring-webapp:mysql
    ports:
      - 8080:8080
    environment:
      - SPRING_DATASOURCE_URL=jdbc:mysql://db/test
      - SPRING_DATASOURCE_USERNAME=root
      - SPRING_DATASOURCE_PASSWORD=password
    depends_on:
      db:
        condition: service_healthy
  db:
    image: mysql:9.2
    environment:
      - MYSQL_ROOT_PASSWORD=password
      - MYSQL_DATABASE=test
    volumes:
      - db_data:/var/lib/mysql
    healthcheck:
      test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost", "-uroot", "-p$$MYSQL_ROOT_PASSWORD"]
      interval: 5s
      timeout: 5s
      start_period: 10s
      retries: 5

volumes:
  db_data:

Docker commands

docker compose -f oci://maes95/spring-webapp-compose:0.1.0 up

Use the above command to pull and run the Compose file. Learn more.

Images used

Image + 1 more

MySQL is a widely used, open-source relational database management system (RDBMS).


Pulls

1B+

Stars

16185

Last Updated

5 days

Image


Pulls

206

Stars

0

Last Updated

7 months