Advertisement
huezohuezo1990

MySQL

Oct 14th, 2022 (edited)
1,272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.37 KB | None | 0 0
  1. version: '3.3'
  2. services:
  3.   db:
  4.     image: mysql:8.0
  5.     environment:
  6.       MYSQL_ROOT_PASSWORD: mypassword
  7.     ports:
  8.     - 3306:3306
  9.     volumes:
  10.     - ./mysql-epay:/var/lib/mysql
  11.     networks:
  12.     - microsrv
  13.     logging:
  14.       driver: json-file
  15.     deploy:
  16.       restart_policy:
  17.         condition: on-failure
  18. networks:
  19.   microsrv:
  20.     external: true
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement