question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

docker entrypoint file

See original GitHub issue

hi, thanks for this project. I want to run this project in docker , but I get an error.

docker run --name easyauth \
    -e DB_TYPE=sqlite \
    -e DB_NAME=auth \
    -e DB_LOCAL_PATH=/mnt/easyauth \
    -e ISSUER=EasyAuth \
    -e SUBJECT=EasyAuthAuth \
    -e AUDIENCE=EasyAuthApis \
    -e KEY_PATH=/mnt/easyauth \
    -e KEY_NAME=test_key \
    -v $(pwd)/easyauth-vol:/mnt/easyauth \
    -p 8220:8220 \
    -d joshjamison/easyauth:v0.0.0

./entrypoint.sh: line 3: gunicorn: command not found

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:1
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
codemationcommented, May 10, 2021

Thanks for closing @Turall and for your report / contribution.

1reaction
Turallcommented, May 10, 2021

@Turall & @Turall - check docs here for latest instructions.

Added updated docker image with following tags:

  • joshjamison/easyauth:v0.0.1
  • joshjamison/easyauth:latest

Let me know how it goes Worked, thank you!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Best practices for writing Dockerfiles
The best use for ENTRYPOINT is to set the image's main command, allowing that image to be run as though it was that...
Read more >
Understanding Docker's CMD and ENTRYPOINT Instructions
In the Dockerfile , we are simply using the ubuntu:latest image as our base container image, installing the apache2-utils package, and then ...
Read more >
Lab #5 : Create an image with ENTRYPOINT instruction
$ docker container run entrypoint:v1 Hi, your ENTRYPOINT instruction in Exec Form ! ENTRYPOINT instruction in Shell Form. Dockerfile. $ cat Dockerfile FROM ......
Read more >
How ENTRYPOINT Works in Docker?
Docker entrypoint is a Dockerfile directive or instruction that is used to specify the executable which should run when a container is started...
Read more >
Docker CMD vs ENTRYPOINT: What's The Difference & ...
In Dockerfiles, an ENTRYPOINT instruction is used to set executables that will always run when the container is initiated. Unlike CMD commands, ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found