Skip to content

Instantly share code, notes, and snippets.

@bradcordeiro
Last active April 8, 2024 15:01
Show Gist options
  • Save bradcordeiro/480c784ada94945246f51c0686be98af to your computer and use it in GitHub Desktop.
Save bradcordeiro/480c784ada94945246f51c0686be98af to your computer and use it in GitHub Desktop.
Run a DaVinci Resolve Projects Server in a Docker Container
docker run \
--name resolve_project_server \
-p 5432:5432 \
-v resolve_projects_data:/var/lib/postgresql/data \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=DaVinci \
-e POSTGRES_HOST_AUTH_METHOD=md5 \
-d \
postgres:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment