mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-14 23:59:52 +02:00
remove second compose YML
This commit is contained in:
parent
4d0dfc8083
commit
8dbdb70f5c
4 changed files with 3 additions and 21 deletions
15
db/Dockerfile
Normal file
15
db/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM postgres:12
|
||||
EXPOSE 5432
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get -y install git libpq-dev postgresql-server-dev-12
|
||||
RUN apt-get -y install gcc make
|
||||
|
||||
COPY init-count-bits.sh /docker-entrypoint-initdb.d/
|
||||
|
||||
RUN git clone https://github.com/sldab/count-bits.git /opt/count-bits && \
|
||||
cd /opt/count-bits && \
|
||||
make && \
|
||||
sed -i.bak 's/create_functions: install/create_functions:/' Makefile && \
|
||||
make install
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue