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.

26 lines
445B

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