Sign inSign up

granlobo2004/myerasmusjourneyapi-compose:1.0.0

Manifest digest

sha256:fd3b82120ba279e4fd29ebf600a7491b60c586c53ebee28738d68b214a076912

Last pushed

about 1 year by granlobo2004

Type

Compose

Manifest digest

sha256:fd3b82120ba279e4fd29ebf600a7491b60c586c53ebee28738d68b214a076912

Compose file content

services:
  api:
    image: granlobo2004/myerasmusjourneyapi:1.0.0
    platform: linux/amd64
    ports:
      - 8443:8080
    environment:
      - SPRING_DATASOURCE_URL=jdbc:mysql://db/MyErasmusJourney
      - SPRING_DATASOURCE_USERNAME=root
      - SPRING_DATASOURCE_PASSWORD=${MYSQL_ROOT_PASSWORD}
    depends_on:
      db:
        condition: service_healthy
  db:
    image: mysql:9.2
    environment:
      - MYSQL_ROOT_PASSWORD=${SPRING_DATASOURCE_PASSWORD}
      - MYSQL_DATABASE=${MYSQL_DATABASE}
    volumes:
      - db_data:/var/lib/mysql
    ports:
      - 3306:3306
    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://granlobo2004/myerasmusjourneyapi-compose:1.0.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

7 days