Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@test-serverstart a new Ionic project with tabs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Ionic-docker
A ionic 2 image to be used for local development or for CI process with docker-friendly services like Gitlab CI
Inspired by marcoturi:
Features
Node
Npm or Yarn
Ionic
Cordova
Android sdk and build tools
Ready to run Google Chrome for e2e tests
Ruby
scss-lint tool
Usage
docker run -ti --rm -p 8100:8100 -p 35729:35729 procoders/ionic-dockerIf you have your own ionic sources, you can launch it with:
docker run -ti --rm -p 8100:8100 -p 35729:35729 -v /path/to/your/ionic-project/:/myApp:rw procoders/ionic-dockerAutomation
With this alias:
alias ionic="docker run -ti --rm -p 8100:8100 -p 35729:35729 --privileged -v /dev/bus/usb:/dev/bus/usb -v ~/.gradle:/root/.gradle -v \$PWD:/myApp:rw procoders/ionic-docker ionic"Due to a bug in ionic, if you want to use ionic serve, you have to use --net host option :
alias ionic="docker run -ti --rm --net host --privileged -v /dev/bus/usb:/dev/bus/usb -v ~/.gradle:/root/.gradle -v \$PWD:/myApp:rw procoders/ionic-docker ionic"Know you need gradle for android, I suggest to mount ~/.gradle into /root/.gradle to avoid downloading the whole planet again and again
you can follow the ionic tutorial (except for the ios part...) without having to install ionic nor cordova nor nodejs on your computer.
ionic start myApp tabs
cd myApp
ionic serve
# If you didn't used --net host, be sure to chose the ip address, not localhost, or you would not be able to use itopen http://localhost:8100 and everything works.
Android tests
You can test on your android device, just make sure that debugging is enabled.
cd myApp
ionic platform add android
ionic build android
ionic run android##FAQ
The application is not installed on my android device
Try
docker run -ti --rm -p 8100:8100 -p 35729:35729 --privileged -v /dev/bus/usb:/dev/bus/usb -v \$PWD:/myApp:rw agileek/ionic-framework adb devicesyour device should appear
The adb devices show nothing whereas I can see it when I do
adb deviceson my computerYou can't have adb inside and outside docker at the same time, be sure to
adb kill-serveron your computer before using this image
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.