Test
This commit is contained in:
parent
b61bee0220
commit
c9105f300c
@ -10,6 +10,11 @@ COPY parse_db_url.sh /usr/local/bin/parse_db_url.sh
|
||||
USER root
|
||||
RUN chmod 755 /usr/local/bin/parse_db_url.sh
|
||||
|
||||
RUN useradd -ms /bin/bash customuser && \
|
||||
chown -R customuser:customuser /var/lib/gitea/custom
|
||||
|
||||
USER customuser
|
||||
|
||||
ENV DATABASE_URL=${DATABASE_URL}
|
||||
|
||||
CMD ["/usr/local/bin/parse_db_url.sh"]
|
||||
|
@ -1,7 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
exec mkdir /var/lib/gitea/custom/conf
|
||||
|
||||
export GITEA__database__DB_TYPE=postgres
|
||||
export GITEA__database__USER=$(echo ${DATABASE_URL} | sed -r "s|.*://([^:]+):.*|\1|")
|
||||
export GITEA__database__PASSWD=$(echo ${DATABASE_URL} | sed -r "s|.*://[^:]+:([^@]+)@.*|\1|")
|
||||
|
Loading…
Reference in New Issue
Block a user