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.

27 satır
473B

  1. services:
  2. web:
  3. build: ./web
  4. container_name: python
  5. restart: unless-stopped
  6. ports:
  7. - "5000:5000"
  8. volumes:
  9. - ./web:/code
  10. env_file:
  11. - ./.env.dev
  12. depends_on:
  13. - db
  14. db:
  15. image: mariadb:latest
  16. container_name: mariadb
  17. restart: unless-stopped
  18. env_file:
  19. - ./.env.dev
  20. volumes:
  21. - dbdata:/var/lib/mysql
  22. command: '--default-authentication-plugin=mysql_native_password'
  23. volumes:
  24. dbdata: