-
Notifications
You must be signed in to change notification settings - Fork 89
Description
I’ve successfully booted PgAdmin alongside Odoo, Postgres, and Nginx using Docker Compose, and now I’d like to start additional services, specifically Minio and KeyDB. I updated the .env configuration to enable Redis, S3, and PgAdmin, and then ran docker-compose up. However, after checking the running services, I noticed that neither Minio nor KeyDB containers were running.
Here’s the initial configuration and the changes I made:
#### OLD CONFIG
# Services
PROJECT_NAME=odoocker
SERVICES=odoo,nginx,proxy,postgres
# Service configuration
USE_REDIS=false
USE_S3=false
USE_SENTRY=false
USE_PGADMIN=false
#### CHANGED CONFIG
# Services
PROJECT_NAME=odoocker
SERVICES=odoo,nginx,proxy,postgres,redis,s3,pgadmin
# Service configuration
USE_REDIS=true
USE_S3=true
USE_SENTRY=false
USE_PGADMIN=trueAfter applying these changes, I ran the Docker Compose debug command:
docker compose config --servicesExpected Result:
I expected the updated configuration to bring up Redis and Minio services as well.
Actual Result:
Only the original services and PgAdmin started, with no containers for Minio or KeyDB.
Question:
Is there an additional configuration required to start these services with Docker Compose? Any guidance on troubleshooting or configuration adjustments would be greatly appreciated.
Thank you in advance for any help!