Sign inSign up

granlobo2004/swappy-compose:1.0.0

Manifest digest

sha256:07846c879d1669615b7771ee7b270339378b65fbbd71007b1f106b062593f6e3

Last pushed

over 1 year by granlobo2004

Type

Compose

Manifest digest

sha256:07846c879d1669615b7771ee7b270339378b65fbbd71007b1f106b062593f6e3

Compose file content

services: 
  web:
    image: granlobo2004/swappy:1.0.0
    ports:
      - 8443:8443
    environment:
      - SPRING_DATASOURCE_URL=jdbc:mysql://db/onlinestore
      - 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=onlinestore
    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/swappy-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

16191

Last Updated

1 day

Image


Pulls

78

Stars

0

Last Updated

over 1 year