Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Hello, I have a droplet with CoreOS and system reboots once a two/three days accidentally. After every reboot I need to restart my docker containers. To get it I create systemd unit ***.service with the next structure:
[Unit]
Description=*** service
After=docker.service
[Service]
ExecStart="/usr/bin/docker run -d -p 80:80 *** /usr/sbin/apache2ctl -D FOREGROUND"
[Install]
WantedBy=multi-user.target
When I try to start it as:
sudo systemctl start ***.service
It crashes with error:
Oct 08 07:18:47 *** systemd[1]: [/etc/systemd/system/***.service:6] Executable path is not absolute, ignoring: "/usr/bin/docker run -d -p 80:80 *** /...-D FOREGROUND"
Oct 08 07:18:47 *** systemd[1]: ***.service lacks ExecStart setting. Refusing.
How can I restrict CoreOS accidental reboots? And how can I fix my error with systemctl?
Thanks in advance!