Skip to content

Commit

Permalink
Add support for displaying uk currency
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Jun 22, 2024
1 parent 72d4eb9 commit 902d5e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ RUN mkdir db

RUN apt update
RUN apt install -y locales
#RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
RUN echo "en_GB.UTF-8 UTF-8" >> /etc/locale.gen
RUN echo "nl_NL.UTF-8 UTF-8" >> /etc/locale.gen
#RUN locale-gen en_US.UTF-8
RUN locale-gen en_US.UTF-8
RUN locale-gen en_GB.UTF-8
RUN locale-gen nl_NL.UTF-8
#ENV LC_ALL en_US.UTF-8
ENV LC_ALL nl_NL.UTF-8
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ services:
- "./local.py:/app/tracker_development/tracker_development/local.py"
- "static:/var/www/html/static:rw"
environment:
- LC_ALL=en_GB.UTF-8
- TRACKER_ALLOWED_HOSTS="localhost, esatracker.eu.ngrok.io"
- TRACKER_DOMAIN="localhost"
- TRACKER_DEBUG=True
Expand Down

0 comments on commit 902d5e0

Please sign in to comment.