rubencamach0/bookhive:1.0.0

Manifest digest

sha256:e5da29bf483cd26cc1742d4f462db7424599dd8d0b8c2e7f656d0be6e9f8a4b3

Last pushed

about 1 year by rubencamach0

Type

Compose

Manifest digest

sha256:e5da29bf483cd26cc1742d4f462db7424599dd8d0b8c2e7f656d0be6e9f8a4b3

Compose file content

version: '3.8'

services:
  app:
    image: rubencamach0/bookhive:latest
    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:

Docker commands

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

5 days

Compose + 1 more


Pulls

157

Stars

0

Last Updated

about 1 year