Last active
May 16, 2022 09:06
-
-
Save shakalandy/7c8a1a47703b1477f4169942dfb2ca03 to your computer and use it in GitHub Desktop.
jitsu docker with nginx-proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [email protected] \ | |
-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