diff --git a/compose.yaml b/compose.yaml index be9fe7ea..67f8e06d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,7 +1,7 @@ x-customizable-image: &customizable_image # By default the image used only contains the `frappe` and `erpnext` apps. - # See https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md # about using custom images. + #TODO Replace Image with Custom Image for production. See https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md image: frappe/erpnext:${ERPNEXT_VERSION:?No ERPNext version set} x-depends-on-configurator: &depends_on_configurator diff --git a/devcontainer-example/docker-compose.yml b/devcontainer-example/docker-compose.yml index e27b8daa..b3789f48 100644 --- a/devcontainer-example/docker-compose.yml +++ b/devcontainer-example/docker-compose.yml @@ -42,7 +42,7 @@ services: image: docker.io/redis:alpine frappe: - image: docker.io/frappe/bench:latest + image: rafnav_bench:latest command: sleep infinity environment: - SHELL=/bin/bash diff --git a/images/rafnav_bench/Dockerfile b/images/rafnav_bench/Dockerfile index d2e09925..c98ffd1f 100644 --- a/images/rafnav_bench/Dockerfile +++ b/images/rafnav_bench/Dockerfile @@ -130,11 +130,11 @@ RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/instal && brew install wget # Add aliases -RUN touch $HOME/.bash_aliases \ - && echo "alias py='python'" >> $HOME/.bash_aliases \ - && echo "alias frap-install='py installer.py'" >> $HOME/.bash_aliases \ - && echo "alias install-rafnav='bench install-app erpnext documentation lending filing matter_management lrms raf_finance'" >> $HOME/.bash_aliases \ - && echo "alias start-dev='cd rafnav_bench'" >> $HOME/.bash_aliases +RUN touch ~/.bash_aliases \ + && echo 'alias py="python"' >> ~/.bash_aliases \ + && echo 'alias frap-install="py installer.py"'>> ~/.bash_aliases \ + && echo 'alias install-rafnav="bench install-app erpnext documentation lending filing matter_management lrms raf_finance"' >> ~/.bash_aliases \ + && echo 'alias start-dev="cd rafnav_bench"' >> ~/.bash_aliases # Install Node via nvm