Skip to content
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

Ensure package names are lowercase when creating docker stack #22

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions {{ cookiecutter.project_slug }}/devops/stacks/plone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
- nw-public

frontend:
image: {{ cookiecutter.__docker_image_prefix }}{{ cookiecutter.github_organization }}/{{ cookiecutter.project_slug }}-frontend:latest
image: {{ cookiecutter.__docker_image_prefix }}{{ cookiecutter.github_organization|lower }}/{{ cookiecutter.project_slug }}-frontend:latest
environment:
RAZZLE_INTERNAL_API_PATH: http://backend:8080/Plone
depends_on:
Expand All @@ -84,7 +84,7 @@ services:
- traefik.http.routers.frontend.middlewares=gzip

backend:
image: {{ cookiecutter.__docker_image_prefix }}{{ cookiecutter.github_organization }}/{{ cookiecutter.project_slug }}-backend:latest
image: {{ cookiecutter.__docker_image_prefix }}{{ cookiecutter.github_organization|lower }}/{{ cookiecutter.project_slug }}-backend:latest
environment:
SITE: Plone
RELSTORAGE_DSN: "dbname='plone' user='plone' host='db' password='plone'"
Expand Down