Skip to content

Instantly share code, notes, and snippets.

@shakalandy
Last active May 16, 2022 09:06
Show Gist options
  • Save shakalandy/7c8a1a47703b1477f4169942dfb2ca03 to your computer and use it in GitHub Desktop.
Save shakalandy/7c8a1a47703b1477f4169942dfb2ca03 to your computer and use it in GitHub Desktop.
jitsu docker with nginx-proxy
docker run \
-d --name jitsu \
--network proxy \
--restart=always \
-p 8000:8000 \
-e REDIS_URL=172.17.0.1 \
-v $PWD/server_logs/:/home/eventnative/data/logs/ \
-v $PWD/configurator_logs/:/home/configurator/data/logs/ \
-v jitsu_workspace:/home/eventnative/data/airbyte \
-v /var/run/docker.sock:/var/run/docker.sock \
-e VIRTUAL_PORT=8000 \
-e VIRTUAL_HOST=jitsu.example.com \
-e LETSENCRYPT_HOST=jitsu.example.com \
-e LETSENCRYPT_EMAIL=certs@example.com \
-e SSL_POLICY=Mozilla-Modern \
jitsucom/jitsu:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment