Transfer of docker to Infomaniak Hosting
Posted: Thu Nov 27, 2025 9:20 pm
Chatgpt notes on mirgration/upgrade
Post by MyQ » Thu Nov 27, 2025 1:43 pm
Below is a clear, safe, step-by-step guide explaining what is and isn’t possible when trying to transfer a Docker project from a Raspberry Pi 5 (ARM64, Debian) to Infomaniak shared hosting.
First: The Important Reality
Infomaniak shared hosting does not support Docker, containers, or any root-level Linux features.
So you cannot “transfer a Docker container” and run it there.
Shared hosting ≠ VPS ≠ Cloud.
If you want to run Docker on Infomaniak, only their VPS or Cloud servers support it.
What You Can Do
Depending on your goal, here are the valid migration paths:
Option A — “Deploy the same project without Docker (shared hosting compatible)”
This works if your RPi 5 Docker container is hosting something like:
a PHP app
a static site (HTML/JS/CSS)
a Node.js app (not supported on cheap shared hosting)
a Python app (not supported on shared hosting)
✔ Shared hosting supports:
PHP (8.x)
MySQL/MariaDB
Static files
Cron jobs
Basic terminal (no root)
Shared hosting does not support:
Node.js apps
Python web servers
Docker
Custom daemons
Background services
How to migrate if it's a PHP/static project:
Extract your app from Docker
On your Raspberry Pi:
docker cp <container_name>:/var/www/html ./site
Or wherever your app files live.
Recreate config (not the container!)
Move .env variables to Infomaniak’s environment manager
Export databases separately using mysqldump
Upload the files
Via SFTP
Or Infomaniak file manager
Import your database via Infomaniak’s phpMyAdmin.
If you tell me what your container runs, I can generate an exact migration script.
Option B — "Move Docker exactly as-is" → Requires Infomaniak VPS
If you need to run the container unchanged, you need:
Infomaniak VPS (minimum 2–4 GB RAM if ARM → AMD64 re-build is needed).
Steps:
Save image on the Raspberry Pi
docker save -o myapp-arm64.tar myapp
Transfer the file
Example using SCP:
scp myapp-arm64.tar user@your-vps.ip:/home/user/
Load it on the VPS
docker load -i myapp-arm64.tar
Important:
Raspberry Pi = ARM64
Infomaniak VPS = AMD64
So the container may not run unless:
You rebuild using multi-arch:
docker buildx build --platform linux/amd64 -t myapp:amd64 .
Or your app is architecture-agnostic (e.g., Node + JS only)
If you want, I can generate a full multi-arch Dockerfile for you.
Option C — “Convert to Infomaniak Web App Hosting / Managed Hosting”
Infomaniak also offers:
Managed WordPress
Managed Node/VPS
Static hosting
If your RPi container runs a common framework, I can map it to the correct Infomaniak service.
⚠ To give you the exact migration steps
I need to know what your Docker container actually runs:
Please tell me:
What’s inside your container?
PHP?
Node.js?
Python?
A database?
A reverse proxy?
Do you want to keep using Docker, or is a simple hosting OK?
Shared hosting or VPS at Infomaniak?
If you reply with those 3 answers, I can generate:
a complete migration plan
specific commands
exact Dockerfile rebuilds
or a ZIP of files ready to deploy
Just let me know what type of project your RPi container contains.
-------------------------------------------------------------------------------------------
Transfer of docker to Infomaniak Hosting
Post by MyQ » Thu Nov 27, 2025 1:36 pm
Docker CANNOT be installed on actual oravox.com we must migrate either to a VPS, or cloud in order to install docker in Infomaniak. It is possible to install docker developed software on actual hosting using a compatible PHP version, but this requires much manual intervention and ongoing administration.
Please note actual PHP of oravox.con is actually 8.1, but is near end of life and will need to upgraded very soon.
If we use the VPS hosting, this cannot be automatically transferred later to the cloud hosting.
Please give me feedback as to which hosting option would be best, i feel that upgrading to cloud directly would be better because this can be dynamically sized, instantly. I we see too much traffic to the site the VPS cannot be quickly modified to handle more users.
I am unfamiliar with Docker Development only server side install and debug, so I cannot accurately calculate the impact to the programmers.
I invite all to comment in this forum your thoughts on this choice, or advice so we can move forward with the project in the best way for all.
[google]
Docker ne peut pas être installé sur le site oravox.com. Nous devons migrer vers un VPS ou le cloud pour l'installer sur Infomaniak. Il est possible d'installer un logiciel développé avec Docker sur un hébergement existant en utilisant une version PHP compatible, mais cela nécessite une intervention manuelle importante et une administration continue.
Veuillez noter que la version de PHP utilisée par oravox.con est actuellement la 8.1, mais elle arrive en fin de vie et devra être mise à jour très prochainement.
Si nous utilisons un hébergement VPS, la migration vers le cloud ne sera pas automatique. Merci de me faire part de vos suggestions quant à l'option d'hébergement la plus adaptée. Je pense qu'une migration directe vers le cloud serait préférable, car elle permet une adaptation dynamique et instantanée des ressources. En cas de forte augmentation du trafic sur le site, le VPS ne pourra pas être rapidement dimensionné pour gérer un plus grand nombre d'utilisateurs.
Je ne suis pas familier avec le développement Docker, seulement avec l'installation et le débogage côté serveur. Je ne peux donc pas évaluer précisément l'impact sur les développeurs.
Je vous invite à partager vos réflexions et vos conseils sur ce choix afin que nous puissions avancer au mieux dans ce projet.
Post by MyQ » Thu Nov 27, 2025 1:43 pm
Below is a clear, safe, step-by-step guide explaining what is and isn’t possible when trying to transfer a Docker project from a Raspberry Pi 5 (ARM64, Debian) to Infomaniak shared hosting.
Infomaniak shared hosting does not support Docker, containers, or any root-level Linux features.
So you cannot “transfer a Docker container” and run it there.
Shared hosting ≠ VPS ≠ Cloud.
If you want to run Docker on Infomaniak, only their VPS or Cloud servers support it.
What You Can Do
Depending on your goal, here are the valid migration paths:
This works if your RPi 5 Docker container is hosting something like:
a PHP app
a static site (HTML/JS/CSS)
a Node.js app (not supported on cheap shared hosting)
a Python app (not supported on shared hosting)
✔ Shared hosting supports:
PHP (8.x)
MySQL/MariaDB
Static files
Cron jobs
Basic terminal (no root)
Node.js apps
Python web servers
Docker
Custom daemons
Background services
How to migrate if it's a PHP/static project:
Extract your app from Docker
On your Raspberry Pi:
docker cp <container_name>:/var/www/html ./site
Or wherever your app files live.
Recreate config (not the container!)
Move .env variables to Infomaniak’s environment manager
Export databases separately using mysqldump
Upload the files
Via SFTP
Or Infomaniak file manager
Import your database via Infomaniak’s phpMyAdmin.
If you tell me what your container runs, I can generate an exact migration script.
If you need to run the container unchanged, you need:
Infomaniak VPS (minimum 2–4 GB RAM if ARM → AMD64 re-build is needed).
Steps:
docker save -o myapp-arm64.tar myapp
Example using SCP:
scp myapp-arm64.tar user@your-vps.ip:/home/user/
docker load -i myapp-arm64.tar
Important:
Raspberry Pi = ARM64
Infomaniak VPS = AMD64
So the container may not run unless:
You rebuild using multi-arch:
docker buildx build --platform linux/amd64 -t myapp:amd64 .
Or your app is architecture-agnostic (e.g., Node + JS only)
If you want, I can generate a full multi-arch Dockerfile for you.
Infomaniak also offers:
Managed WordPress
Managed Node/VPS
Static hosting
If your RPi container runs a common framework, I can map it to the correct Infomaniak service.
⚠ To give you the exact migration steps
I need to know what your Docker container actually runs:
Please tell me:
What’s inside your container?
PHP?
Node.js?
Python?
A database?
A reverse proxy?
Do you want to keep using Docker, or is a simple hosting OK?
Shared hosting or VPS at Infomaniak?
If you reply with those 3 answers, I can generate:
a complete migration plan
specific commands
exact Dockerfile rebuilds
or a ZIP of files ready to deploy
Just let me know what type of project your RPi container contains.
-------------------------------------------------------------------------------------------
Transfer of docker to Infomaniak Hosting
Post by MyQ » Thu Nov 27, 2025 1:36 pm
Docker CANNOT be installed on actual oravox.com we must migrate either to a VPS, or cloud in order to install docker in Infomaniak. It is possible to install docker developed software on actual hosting using a compatible PHP version, but this requires much manual intervention and ongoing administration.
Please note actual PHP of oravox.con is actually 8.1, but is near end of life and will need to upgraded very soon.
If we use the VPS hosting, this cannot be automatically transferred later to the cloud hosting.
Please give me feedback as to which hosting option would be best, i feel that upgrading to cloud directly would be better because this can be dynamically sized, instantly. I we see too much traffic to the site the VPS cannot be quickly modified to handle more users.
I am unfamiliar with Docker Development only server side install and debug, so I cannot accurately calculate the impact to the programmers.
I invite all to comment in this forum your thoughts on this choice, or advice so we can move forward with the project in the best way for all.
[google]
Docker ne peut pas être installé sur le site oravox.com. Nous devons migrer vers un VPS ou le cloud pour l'installer sur Infomaniak. Il est possible d'installer un logiciel développé avec Docker sur un hébergement existant en utilisant une version PHP compatible, mais cela nécessite une intervention manuelle importante et une administration continue.
Veuillez noter que la version de PHP utilisée par oravox.con est actuellement la 8.1, mais elle arrive en fin de vie et devra être mise à jour très prochainement.
Si nous utilisons un hébergement VPS, la migration vers le cloud ne sera pas automatique. Merci de me faire part de vos suggestions quant à l'option d'hébergement la plus adaptée. Je pense qu'une migration directe vers le cloud serait préférable, car elle permet une adaptation dynamique et instantanée des ressources. En cas de forte augmentation du trafic sur le site, le VPS ne pourra pas être rapidement dimensionné pour gérer un plus grand nombre d'utilisateurs.
Je ne suis pas familier avec le développement Docker, seulement avec l'installation et le débogage côté serveur. Je ne peux donc pas évaluer précisément l'impact sur les développeurs.
Je vous invite à partager vos réflexions et vos conseils sur ce choix afin que nous puissions avancer au mieux dans ce projet.