docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
337 B
10 lines
337 B
#
|
|
# Use the official image, but add envsubst so that we can use
|
|
# variable names in the configuration file.
|
|
#
|
|
FROM zedeus/nitter:latest
|
|
RUN apk --no-cache add gettext
|
|
|
|
ENTRYPOINT ["/usr/bin/env"]
|
|
CMD ["/bin/sh", "-c", "envsubst < ./nitter.conf.template > ./nitter.conf && exec ./nitter"]
|
|
#CMD ["/bin/sh", "-c", "echo hello ; sleep 60" ]
|
|
|