Local Development
You can run both your container and your Worker locally, without additional configuration, by running npx wrangler dev
(or vite dev
for Vite projects using the Cloudflare Vite plugin) in your project's directory.
To develop Container-enabled Workers locally, you will need to first ensure that a Docker compatible CLI tool and Engine are installed. For instance, you could use Docker Desktop ↗ or Colima ↗.
When you start a dev session, your container image will be built or downloaded. If your
Wrangler configuration sets
the image
attribute to a local path, the image will be built using the local Dockerfile.
If the image
attribute is set to a URL, the image will be pulled from the associated registry.
Container instances will be launched locally when your Worker code calls to create
a new container. This may happen when calling .get()
on a Container
instance or
by calling start()
if manualStart
is set to true
. Requests will then automatically be routed to the correct locally-running container.
When the dev session ends, all associated container instances should be stopped, but local images are not removed, so that they can be reused in subsequent builds.
When you develop with Wrangler or Vite, your Worker's code is automatically reloaded each time you save a change, but code running within the container is not.
To rebuild your container with new code changes, you can hit the [r]
key on your keyboard, which
triggers a rebuild. Container instances will then be restarted with the newly built images.
You may prefer to set up your own code watchers and reloading mechanisms, or mount a local directory into the local container images to sync code changes. This can be done, but there is no built-in mechanism for doing so, and best-practices will depend on the languages and frameworks you are using in your container code.
In production, all of your container's ports will be accessible by your Worker, so you do not need to specifically expose ports using the EXPOSE
instruction ↗ in your Dockerfile.
But for local development you will need to declare any ports you need to access in your Dockerfile with the EXPOSE instruction; for example: EXPOSE 4000
, if you will be accessing port 4000.
If you have not exposed any ports, you will see the following error in local development:
The container "MyContainer" does not expose any ports. In your Dockerfile, please expose any ports you intend to connect to.
And if you try to connect to any port that you have not exposed in your Dockerfile
you will see the following error:
connect(): Connection refused: container port not found. Make sure you exposed the port in your container definition.
You may also see this while the container is starting up and no ports are available yet. You should retry until the ports become available. This retry logic should be handled for you if you are using the containers package ↗.
If you see an opaque internal error
when attempting to connect to your container, you may need to set the DOCKER_HOST
environment variable to the socket path your container engine is listening on. Wrangler or Vite will attempt to automatically find the correct socket to use to communicate with your container engine, but if that does not work, you may have to set this environment variable to the appropriate socket path.
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Products
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- © 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark