Start the container:
docker run --rm -p 80:3000 --env-file ./dockerenv -d pullreminders
Stop the container:
docker stop <cid>
Access the application logs using the commands below:
# Server logsdocker exec <cid> tail log/production.log -f# Worker logsdocker exec <cid> tail log/sidekiq.log -f
We periodically release updates, provided as a new Docker image. Update your instance by import the new Docker image then re-starting your container:
Download the new image
Import it using docker load -i pullreminders.latest.tar
Stop and start the container using the commands above