Closed peavers closed 3 years ago
I should be able to review the issue in greater detail this weekend.
@peavers - for now, you can use v1.1 tag, which is the last official release of code. That should work without issue.
docker pull sjmayotte/route53-dynamic-dns:v1.1
Will provide more updates after I have time to review
@peavers - issue should be fixed on latest image. Let me know if you have any further issues.
I'm going to be changing how we do image tags and will make sure latest always points to the latest stable version and use another tag for dev builds. Should prevent this type of issue in the future. Change will be implemented with next release in the next week or so.
The same issue even after pulling the latest, but yeah rolled back to 1.1 and everything is good.
@peavers - Just pushed a new release with tags v1.2.0
and latest
. The error case you encountered should be fixed. Let me know if you have any issues.
Closing issue. Please reopen if it persists.
Howdy! Just had a similar issue:
$ docker run -d -t -i --rm \
--name route53-dynamic-dns \
-e AWS_ACCESS_KEY_ID=<ID> \
-e AWS_SECRET_ACCESS_KEY=<secret> \
-e AWS_REGION=us-east-1 \
-e ROUTE53_HOSTED_ZONE_ID=<ID> \
-e ROUTE53_DOMAIN=<domain> \
-e ROUTE53_TYPE=A \
-e ROUTE53_TTL=60 \
-e LOG_TO_STDOUT=true \
sjmayotte/route53-dynamic-dns:latest
Then checking the logs
docker logs route53-dynamic-dns
> route53dynamicdns@1.2.0 start /usr/src/app
> node startup.js
Log4js initialized with level INFO
Logging is configured to STDOUT
[2021-08-27T16:20:47.201] [INFO] default - Unable to load environment variables from .env file. Process is likely running in a container. Make sure you pass environment variables when starting container.
Aww drat. If I had waited a minute I would see that it does in fact work. It was just the initial error message that threw me off. This is great! Thank you.
Everything was cool until I pulled the latest update. Now when attempting to start the container I just get:
I'm starting via a docker-compose script