skip to Main Content

I have two different projects and I want to run both projects in separate urls.

For example, one project should run at 127.0.0.1:8080 while the other project should run at 127.0.0.1:8081

I created different docker-compose.yml for prefect containers and gave different ports.I created the containers but I can’t access it except port 8080.

Is it possible to run two different prefect projects on the same server?

2

Answers


  1. In my opinion, you should define port in docker compose file
    Example:

    service:
     container1:
        image: xxx
        container_name: xxx
        ports:
          - "8080:3307"
    
    service:
     container2:
        image: yyy
        container_name: yyy
        ports:
          - "8081:3307"
    
    Login or Signup to reply.
  2. Also, if you’re just getting started with Prefect, it would be much easier for you to start with Prefect 2.0 – here are the docs. You could easily switch between both instances using Profiles https://orion-docs.prefect.io/concepts/settings/#configuration-profiles

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search