-
Notifications
You must be signed in to change notification settings - Fork 897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make local dev work #523
base: master
Are you sure you want to change the base?
Make local dev work #523
Conversation
|
||
crm-db: | ||
image: postgres:latest | ||
container_name: crm-db | ||
volumes: | ||
- /var/lib/containers/storage/volumes/bottlecrm/_data:/var/lib/postgresql/data/pgdata |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is left as a reference only to providing volume that i created using podman for local mount which ofcourse could be modified to a more standard mount point.
@@ -1,31 +1,22 @@ | |||
FROM ubuntu:22.04 | |||
FROM common-bottle-dockerfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure to build this image first
docker build -t common-bottle-dockerfile docker/dockerfile
Update: This PR attempts to address issue #525
Upon following the installation and local development guide on README, there were issues running docker compose on local *nix/mac platform.
Given the following instance of a .env file, the backend localhost for dev works for a local docker like cmd such as
podman compose -f docker/docker-compose.yml up --build --wait