feat: add sources form and table

This commit is contained in:
Alexander Navarro 2025-02-05 19:56:47 -03:00
parent e2a6c92322
commit baf70e6820
11 changed files with 103 additions and 8 deletions

View file

@ -6,7 +6,7 @@ COPY --from=lovasoa/sqlpage:latest /usr/local/bin/sqlpage /usr/local/bin/sqlpage
WORKDIR /app
ENV SQLPAGE_WEB_ROOT=/app
ENV SQLPAGE_CONFIGURATION_DIRECTORY=/etc/sqlpage
ENV SQLPAGE_CONFIGURATION_DIRECTORY=/app/sqlpage
RUN addgroup --gid 1000 --system index_user && \
adduser --uid 1000 --system --no-create-home --ingroup index_user index_user && \

View file

@ -17,3 +17,8 @@ services:
db:
image: postgres:17
env_file: ../.env
volumes:
- db_data:/var/lib/postgresql/data
volumes:
db_data: