New postgres solution
This commit is contained in:
parent
10a4ae6180
commit
d8b5b1d8bc
15
Dockerfile
15
Dockerfile
@ -4,14 +4,9 @@ ENV GITEA_CUSTOM=/var/lib/gitea/custom
|
||||
|
||||
COPY app.ini /var/lib/gitea/custom/conf/app.ini
|
||||
|
||||
|
||||
USER root
|
||||
RUN chmod a+rwx /var/lib/gitea/custom/conf/app.ini
|
||||
|
||||
# Extract the necessary parts from DATABASE_URL and modify the app.ini file in /tmp
|
||||
RUN DATABASE_USER=$(echo $DATABASE_URL | cut -d ':' -f 2 | cut -d '/' -f 3) \
|
||||
&& DATABASE_PASSWORD=$(echo $DATABASE_URL | cut -d ':' -f 3 | cut -d '@' -f 1) \
|
||||
&& DATABASE_HOST=$(echo $DATABASE_URL | cut -d '@' -f 2 | cut -d ':' -f 1) \
|
||||
RUN GITEA__database__USER=$(echo $DATABASE_URL | cut -d ':' -f 2 | cut -d '/' -f 3) \
|
||||
&& GITEA__database__PASSWD=$(echo $DATABASE_URL | cut -d ':' -f 3 | cut -d '@' -f 1) \
|
||||
&& GITEA__database__HOST=$(echo $DATABASE_URL | cut -d '@' -f 2 | cut -d ':' -f 1) \
|
||||
&& DATABASE_PORT=$(echo $DATABASE_URL | cut -d ':' -f 4 | cut -d '/' -f 1) \
|
||||
&& DATABASE_NAME=$(echo $DATABASE_URL | cut -d '/' -f 4) \
|
||||
&& printf "[database]\nDB_TYPE = postgres\nHOST = $DATABASE_HOST\nNAME = $DATABASE_NAME\nUSER = $DATABASE_USER\nPASSWD = $DATABASE_PASSWORD\nSSL_MODE = require\n" > /var/lib/gitea/custom/conf/app.ini
|
||||
&& GITEA__database__NAME=$(echo $DATABASE_URL | cut -d '/' -f 4) \
|
||||
&& GITEA__database__DB_TYPE=postgres
|
||||
|
Loading…
Reference in New Issue
Block a user