Questions tagged [colima]
47 questions
1
vote
1 answer
Why my docker report "Cannot connect to the Docker daemon at unix:///var/run/docker.sock" after colima stopped
I've installed docker desktop (version 4.16.2) on my M2 macbook, and it nicely works. Then I installed colima (version 0.5.2) to use the gvenzl/oracle-xe image, which only supports AMD64.
Also works fine by colima start --arch x86_64 --memory 4.
But…

xiaodp
- 11
- 1
1
vote
0 answers
colima access to kafka port with docker
running Colima with reachable ip:
colima start --network-address
then colima list
PROFILE STATUS ARCH CPUS MEMORY DISK RUNTIME ADDRESS
default Running x86_64 4 8GiB 100GiB docker …

Tzook Bar Noy
- 11,337
- 14
- 51
- 82
1
vote
1 answer
error credentials on gvenzl/oracle-xe ARM colima docker
I'm trying to run an Oracle database on mac m1Pro ARM, so far, here are the steps i did :
Uninstalled colima and docker:
brew uninstall colima docker
Uninstalled docker desktop and deleted all files related.
Installed colima and docker :
brew…

HDS_frenchguy
- 109
- 9
1
vote
1 answer
how to access pods from host?
I'm running colima with kubernetes like:
colima start --kuberenetes
I created a few running pods, and I want to see access the through the browsers.
But I don't know what is the colima IP (or kubernetes node IP).
help appreciated

Tzook Bar Noy
- 11,337
- 14
- 51
- 82
1
vote
1 answer
Docker: Failed to connect to localhost port 8080 after 8 ms: Connection refused
I pulled a python docker image using:
docker pull python:3.8
Then I started a simple http server with:
docker run -ti -p 8080:8080 900972ffeecd python -m http.server 8080
If I docker exec into the container and run curl localhost:8080 I get the…

Bonifacio2
- 3,405
- 6
- 34
- 54
1
vote
1 answer
Docker containers communicates slowly and ends up in timeouts
I am facing this issue on my 14 inch M1 Max (refurbished) MBP with 64GB of RAM. My SLIMBOOK PROX 15 with Ryzen 4800H and 64GB RAM, running ArchLinux (AMD64), has no trouble whatsoever.
Tried both OSX Monterey (12.4) and AsahiLinux on the MBP, both…

retromuz
- 809
- 9
- 26
1
vote
1 answer
How to migrate volume data from docker-for-mac to colima
How do I move volumes from docker-for-mac into colima?

Javier Buzzi
- 6,296
- 36
- 50
1
vote
1 answer
How to run Colima with docker-compose in Pycharm (or other Jetbrains project)
When switching from Docker Desktop to colima I encountered problems with setting up Run configuration in Pycharm thru Docker-compose feature.
Example setup
I keep getting this error from Pycharm:
no such service:…

nordzisko
- 11
- 1
- 2
0
votes
1 answer
DDEV OCI runtime exec failed (TYPO3 `ddev typo3cms` command)
Recently I have issues with DDEV. It’s across different git repositories, so I think that has to do with DDEV or Colima.
ddev version v1.21.6
colima version 0.5.5
macOS Ventura 13.4.1
Macbook Pro M1
ddev typo3cms cache:flush
OCI runtime exec…

Florian
- 21
- 3
0
votes
1 answer
Docker built successfully but no built image show up in the docker images
I was create flask-app and deploy it using docker, i deploy manually in mac and success, this is my Dockerfile script :
# start by pulling the python image
FROM python:3.8-alpine
# copy the requirements file into the image
COPY ./requirements.txt…

Yogyakartas
- 15
- 4
0
votes
0 answers
run nestjs app with oracle on docker with colima in local docker error of 'std::bad_alloc'
docker-compose>>
`version: '3.9'
services:
app:
build:
context: .
target: development
dockerfile: ./Dockerfile.dev
volumes:
- ./:/usr/src/app/
- /usr/src/app/node_modules/
container_name: app
environment:
DEBUG: '*'
SERVICE_DB: 'oracle'
ORACLE_HOST:…
0
votes
0 answers
Exposing a container in Colima to a Docker container on host
Hi I am currently have a Docker container on my m1 MacBook and am trying to connect to a database that is running on a container in Colima's VM. I am a bit new to networking and am not sure how to make the container's connect to one another. I want…
0
votes
0 answers
colima how to pull a specific version of ubuntu layer using --layer=true
I have a requirement to pull a specific version of ubuntu layer instead of the latest, it looks like with the --layer=true colima just pulls the ubuntu:latest tag, Is there any option to configure it to pull a different ubuntu version layer like…

Aravind
- 111
- 6
0
votes
0 answers
Start colima before devcontainers starts
I'm migrating my dev process to VSCode Dev containers and I need Dev containers to start colima before it starts.
I've tried with initializeCommandbut that executes before the container, not Dev containers itself.
The reason I need it this way is…

JuanKB1024
- 324
- 1
- 17
0
votes
0 answers
502 bad gateway with Nginx, Colima, Docker on macos for port forwarding on 443 and 80
I need to redirect port 443 and 80 to port 3000 of localhost using nginx on docker-compose, docker and colima on macos but it throws 502 bad gateway.
This is happening on macos and on linux machine the configuration works fine.
here is my…

Ako
- 197
- 1
- 13