Reputation: 99
I have a native application which is compiled on IBM AIX 7.1 Operating System using XL C/C++ compiler. Is it possible to run the application using docker which is installed on Linux machine? I tried to find the base image for IBM AIX OS, but was unsuccessful.
Upvotes: 0
Views: 332
Reputation: 1650
No. You could use qemu
to emulate a powerpc processor but there is no full AIX emulation to run usermode programs. It would also run rather more slowly.
Upvotes: 1