我需要启用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发布于 2015-07-30 03:18:57
请参阅我之前对该主题How to set the locale inside a Docker container?的回答
根据您的需要,使用正确的区域设置对其进行调整。
https://stackoverflow.com/questions/31707326
复制相似问题