stack.yml 249 B

1234567891011
  1. # Use root/example as user/password credentials
  2. version: '3.1'
  3. services:
  4. db:
  5. image: mysql
  6. restart: always
  7. environment:
  8. MYSQL_ROOT_PASSWORD: example
  9. # (this is just an example, not intended to be a production configuration)