Skip to content

Commit

Permalink
fix: invalid nested interpolation (#1496)
Browse files Browse the repository at this point in the history
Nested interpolation is not supported by docker (docker/cli#4265). Changed the file so that it uses `CUSTOM_TAG` or `ERPNEXT_VERSION` if that's not available.
  • Loading branch information
deltasquare4 authored Oct 25, 2024
1 parent 8ac69bb commit 44a357f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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.
image: ${CUSTOM_IMAGE:-frappe/erpnext}:${CUSTOM_TAG:-${ERPNEXT_VERSION:?No ERPNext version or tag set}}
image: ${CUSTOM_IMAGE:-frappe/erpnext}:${CUSTOM_TAG:-$ERPNEXT_VERSION}
pull_policy: ${PULL_POLICY:-always}

x-depends-on-configurator: &depends_on_configurator
Expand Down

0 comments on commit 44a357f

Please sign in to comment.