我需要启用postgreSQL的重音符号。这是我的docker-compose.yml
,但它不起作用。有小费吗?谢谢。
db:
image: postgres
ports:
- 5432
environment:
DB_UNACCENT: true
mailcatcher:
image: aboutsource/mailcatcher
ports:
- "1080:1080"
web:
build: .
command: passenger start --port 3000
volumes:
- .:/myapp
environment:
- RAILS_ENV=development
ports:
- "3000:3000"
- "25:25"
- "587:587"
links:
- db
- mailcatcher
答案 0 :(得分:-1)
请参阅我之前关于该主题的回答How to set the locale inside a Docker container?
根据您的需要使用正确的区域设置进行调整。