split build-related stuff into src/
parent
15caf46b66
commit
98d65cd865
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
DST_DIR=/src/tt-rss
|
||||
SRC_REPO=https://git.tt-rss.org/fox/tt-rss.git
|
||||
|
||||
if [ ! -d $DST_DIR ]; then
|
||||
mkdir -p $DST_DIR
|
||||
git clone $SRC_REPO $DST_DIR
|
||||
else
|
||||
cd $DST_DIR && \
|
||||
git config core.filemode false && \
|
||||
git pull origin master
|
||||
fi
|
||||
|
||||
if [ ! -d $DST_DIR/plugins.local/nginx_xaccel ]; then
|
||||
git clone https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git $DST_DIR/plugins.local/nginx_xaccel
|
||||
else
|
||||
cd $DST_DIR/plugins.local/nginx_xaccel && \
|
||||
git config core.filemode false && \
|
||||
git pull origin master
|
||||
fi
|
||||
|
||||
mkdir -p /var/www
|
||||
addgroup -g $OWNER_GID app
|
||||
adduser -D -h /var/www/html -G app -u $OWNER_UID app
|
||||
|
@ -0,0 +1,94 @@
|
||||
version: '3'
|
||||
|
||||
# set database password in .env
|
||||
# please don't use quote (') or (") symbols in variables
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:12-alpine
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- db:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
|
||||
app:
|
||||
image: cthulhoo/ttrss-fpm-pgsql-static
|
||||
build:
|
||||
context:
|
||||
./app
|
||||
args:
|
||||
- OWNER_UID=${OWNER_UID}
|
||||
- OWNER_GID=${OWNER_GID}
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- DB_TYPE=pgsql
|
||||
- DB_HOST=db
|
||||
- DB_NAME=${POSTGRES_USER}
|
||||
- DB_USER=${POSTGRES_USER}
|
||||
- DB_PASS=${POSTGRES_PASSWORD}
|
||||
- OWNER_UID=${OWNER_UID}
|
||||
- OWNER_GID=${OWNER_GID}
|
||||
- SELF_URL_PATH=${SELF_URL_PATH}
|
||||
volumes:
|
||||
- app:/var/www/html
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
updater:
|
||||
image: cthulhoo/ttrss-fpm-pgsql-static
|
||||
build:
|
||||
context:
|
||||
./app
|
||||
args:
|
||||
- OWNER_UID=${OWNER_UID}
|
||||
- OWNER_GID=${OWNER_GID}
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- DB_TYPE=pgsql
|
||||
- DB_HOST=db
|
||||
- DB_NAME=${POSTGRES_USER}
|
||||
- DB_USER=${POSTGRES_USER}
|
||||
- DB_PASS=${POSTGRES_PASSWORD}
|
||||
- OWNER_UID=${OWNER_UID}
|
||||
- OWNER_GID=${OWNER_GID}
|
||||
- SELF_URL_PATH=${SELF_URL_PATH}
|
||||
volumes:
|
||||
- app:/var/www/html
|
||||
depends_on:
|
||||
- app
|
||||
user: app
|
||||
command: /updater.sh
|
||||
|
||||
web:
|
||||
image: cthulhoo/ttrss-web
|
||||
build: ./web
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${HTTP_PORT}:2015
|
||||
volumes:
|
||||
- app:/var/www/html:ro
|
||||
depends_on:
|
||||
- app
|
||||
|
||||
web-ssl:
|
||||
image: cthulhoo/ttrss-web-ssl
|
||||
build: ./web-ssl
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- CADDYPATH=/certs
|
||||
- HTTP_HOST=${HTTP_HOST}
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
volumes:
|
||||
- app:/var/www/html:ro
|
||||
- certs:/certs
|
||||
depends_on:
|
||||
- app
|
||||
|
||||
volumes:
|
||||
db:
|
||||
app:
|
||||
certs:
|
Loading…
Reference in New Issue