diff --git a/localdev/docker-compose.yml b/localdev/docker-compose.yml index 1b18a11d7c630a9573ecbc9e165c80de0597d5f4..5ffc161e6d55ba08ddb15bd9782934067def8e62 100644 --- a/localdev/docker-compose.yml +++ b/localdev/docker-compose.yml @@ -25,6 +25,7 @@ services: build: context: ../. dockerfile: ./Dockerfile + command: bash -c "cd /data && python create_db.py && python test_metadata.py && uvicorn --reload geomagio.api:app --host 0.0.0.0 --workers 2" ports: - '8000:8000' extra_hosts: @@ -37,5 +38,7 @@ services: - OPENID_METADATA_URL=$OPENID_METADATA_URL - SECRET_KEY=$SECRET_KEY - SECRET_SALT=$SECRET_SALT - - WEBSERVICE=true + - WEBSERVICE=false + volumes: + - ../.:/data restart: always diff --git a/localdev/local_development.md b/localdev/local_development.md index 1a905d36e028ccd487a2839f1aa40a92bf01c8b8..5f884c6cfba0fad1a2616cb8829556f672f54b28 100644 --- a/localdev/local_development.md +++ b/localdev/local_development.md @@ -52,5 +52,5 @@ and remove the images. `docker exec -it {CONTAINER ID} /bin/bash` execs into the container. This can be helpful for exploring the mysql db. After you exec into the mysql container, run `mysql -u root -p` in the container. Input the password you set to MYSQL_ROOT_PASSWORD. Now you can use SQL to explore the db. -## Running the CLI locally -Exec into the `localdev-web-1` container using \ No newline at end of file +## Helpful Tips +Sometimes the mysql container exits immediately with code 139 due to insufficient memory. Restarting colima resolves this issue.