oist / optinist

calcium imaging pipeline tool
GNU General Public License v3.0
33 stars 13 forks source link

Docker image #641

Open milesAraya opened 1 week ago

milesAraya commented 1 week ago

追加機能についての概要 Issue using Docker for developer installation docker compose -f docker-compose.dev.yml up Docker could not find uvicorn with docker-compose.dev.yml. Caused connection issue.

No issue with docker-compose.yml using docker-compose build docker-compose up 重要度 高: この機能を早急に対応しなければ、他の開発に影響を与える。

ブランチ名 optinist/develop-main。

その他

Screenshot 2024-06-19 at 15 49 00 Screenshot 2024-06-19 at 15 49 18
milesAraya commented 1 week ago

Solved: Change docker-compose.dev.yml to

services: db: image: mysql:latest ports:

  • "127.0.0.1:23306:3306" env_file:
  • studio/config/.env volumes:
  • db_data:/var/lib/mysql environment: MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
image