rubencamach0/prueba:1.0.0

Manifest digest

sha256:19da36c417235b8607f22bf56cd469e1f24b3fd084967d6270a9767b2ddda8d2

Last pushed

about 1 year by rubencamach0

Type

Compose

Manifest digest

sha256:19da36c417235b8607f22bf56cd469e1f24b3fd084967d6270a9767b2ddda8d2

Compose file content

version: '3.8'

services:
  app:
    image: rubencamach0/bookhive:1.0.0
    ports:
      - 8443:8443
    environment:
      SPRING_DATASOURCE_URL: jdbc:mysql://mysql:3306/bookshop
      SPRING_DATASOURCE_USERNAME: root
      SPRING_DATASOURCE_PASSWORD: grupo15SQL
      SPRING_JPA_HIBERNATE_DDL_AUTO: update
    depends_on:
      - mysql
    restart: on-failure

  mysql:
    image: mysql:9.2
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: grupo15SQL
      MYSQL_DATABASE: bookshop
    ports:
      - 3306:3306
    volumes:
      - mysql-data:/var/lib/mysql

volumes:
  mysql-data:

Docker commands

docker compose -f oci://rubencamach0/prueba: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

16153

Last Updated

7 days

Compose + 1 more


Pulls

157

Stars

0

Last Updated

about 1 year