You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 rivejä
297 B

  1. version: "3"
  2. services:
  3. app:
  4. build: app
  5. restart: always
  6. links:
  7. - "db"
  8. ports:
  9. - "5000:5000"
  10. environment:
  11. - FLASK_ENV= production
  12. db:
  13. image: mysql:8.0
  14. ports:
  15. - "32000:3306"
  16. restart: always
  17. environment:
  18. MYSQL_ROOT_PASSWORD: 12345