Set required environment variables in a .env
file:
# .env
DATABASE_URL=postgres://USER:[email protected]:5432/DATABASE
Run the container:
sudo docker run --pull=always --env-file=.env -p 80:4000 --add-host=host.docker.internal:host-gateway ghcr.io/ycnmhd/cherryjuice/app-master:latest
The app should be available at port 80.
Related: building the docker image.