15 lines
369 B
Docker
15 lines
369 B
Docker
FROM gitea/gitea:1.14.5-rootless
|
|
|
|
ADD conf/ /var/lib/gitea/custom/conf/
|
|
ADD config /etc/gitea
|
|
ADD data /var/lib/gitea
|
|
ADD localtime /etc/localtime
|
|
ADD timezone /etc/timezone
|
|
|
|
COPY parse_db_url.sh /usr/local/bin/parse_db_url.sh
|
|
|
|
USER root
|
|
RUN chmod +x /usr/local/bin/parse_db_url.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/parse_db_url.sh && /usr/local/bin/gitea web -port $PORT"]
|