stack.yml 317 B

1234567891011121314151617
  1. # Use root/example as user/password credentials
  2. version: '3.1'
  3. services:
  4. db:
  5. image: mysql
  6. command: --default-authentication-plugin=mysql_native_password
  7. restart: always
  8. environment:
  9. MYSQL_ROOT_PASSWORD: example
  10. adminer:
  11. image: adminer
  12. restart: always
  13. ports:
  14. - 8080:8080