Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 509 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 509 Bytes

paste-and-forget

Something like pastebin but with spring webflux (hopefully)

Execution

# Never ending helper command
docker compose up

To connect MySQL admin page

phpmyadmin:
  image: phpmyadmin/phpmyadmin
  container_name: pma
  links:
    - mysql
  environment:
    PMA_HOST: mysql
    PMA_PORT: 3306
    PMA_ARBITRARY: 1
  restart: always
  ports:
    - 8081:80

Migrations

# To order by the date time
cd ./migrations
touch V`date +%s`__description.sql