Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Help Needed to Start Additional Containerized Services with Docker Compose #30

@josuablejeru

Description

@josuablejeru

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=true

After applying these changes, I ran the Docker Compose debug command:

docker compose config --services

Expected 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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions