Hello everybody,
today I want to write a few words about how to work with Docker with help of C#.
Recently I've got a challenge to find the way how to manage Docker. Initially I've tried Docker.Dotnet library. It has quite interesting options for management of docker, but from my own prospec...
Hello everybody,
today I want to write a few words on how to add links to some entites in Acumatica.
So, recently I've had an assignment to add redirect into existing grid, so intead of showing some text show nice link which will lead to Purchase order.
Here is what I've done in order to achieve...
Hello everybody,
today I want to note just short usage of openssl command:
openssl req -nodes -days 10 -newkey rsa:2048 -keyout keyfile.pem -out certfile.pem
this command will generate two files: keyfile.pem and certfile.pem.
Just as the openssl command simplifies the creation of key an...
Hello everybody,
today I want to document how to permanently open port in CentOS linux permanently. You can achieve it with following command:
firewall-cmd --zone=public --add-port=22/tcp --permanent
or with usage of iptables:
iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
Key --permanent e...
Hello everybody,
today I want to say a few words about interesting program: ngrok. The main idea of it is to allow other computers to see ports which you've configured in your virtual box machine. And surprisingly it is very cross platform. Take note of the list of platforms at download page:&nbs...
Hi,
just small note on topic how to remove and delete all docker containers in ubuntu:
sudo docker stop $(sudo docker ps -a -q)
sudo docker rm $(sudo docker ps -a -q)
Got a customization idea? Let’s make it happen! Leave a request below, and let’s transform your Acumatica system into a power...
Hello everybody,
today I want to document how to enable ports for dokcer swarm in ubuntu:
sudo ufw enablesudo ufw allow 2377/tcpsudo ufw allow 7946/tcpsudo ufw allow 7946/udpsudo ufw allow 4789/tcpsudo ufw verbose
Just as configuring the right ports is essential for a seamless Docker Swarm...
Hello everybody,
today in order to preserve shortcut for shipyard installation I've decided to preserve it's shortcut in my blog.
curl -sSL https://shipyard-project.com/deploy | bash -s
this will install shipyard at your centOS machine. User name will be admin, password: shipyard.
Ready to...
Hello everybody,
this post is intended for those people who want to make development for Acumatica, but don't know where to start or how to start. Or for those, who know C#, but absolutely can't figure out how to work with Acumatica.
So, first of all, I'll describe some general ideas, and then pr...
Recently I've posted following question on stackoverflow:
I have following request from my customer to be implemented in Acumatica:
Create form which have input fields on top.
Form should have first grid, which reacts on parameters on top
Form should have second grid, which reacts o...