Ayush1325

Mysql Compose

Apr 24th, 2021 (edited)
1,736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.33 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4.   db:
  5.     image: mysql
  6.     environment:
  7.       MYSQL_ROOT_PASSWORD: example
  8.         MYSQL_DATABASE: docker_db
  9.     ports:
  10.      - "3306:3306"
  11.     volumes:
  12.      - mysql-data:/var/lib/mysql
  13.  
  14.   adminer:
  15.     image: adminer
  16.     restart: always
  17.     ports:
  18.      - 8080:8080
  19. volumes:
  20.  mysql-data:Path on Host
Add Comment
Please, Sign In to add comment