ttrss-container/docker-compose.yml

67 lines
1.3 KiB
YAML
Raw Normal View History

2019-11-15 12:51:55 +00:00
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:
2019-11-15 14:42:50 +00:00
build:
context:
./app
args:
- OWNER_UID=${OWNER_UID}
- OWNER_GID=${OWNER_GID}
2019-11-15 12:51:55 +00:00
restart: unless-stopped
environment:
- DB_TYPE=pgsql
- DB_HOST=db
- DB_NAME=${POSTGRES_USER}
- DB_USER=${POSTGRES_USER}
- DB_PASS=${POSTGRES_PASSWORD}
2019-11-15 14:42:50 +00:00
- OWNER_UID=${OWNER_UID}
- OWNER_GID=${OWNER_GID}
- SELF_URL_PATH=${SELF_URL_PATH}
2019-11-15 12:51:55 +00:00
volumes:
2019-11-15 18:20:27 +00:00
- app:/var/www/html
2019-11-15 12:51:55 +00:00
depends_on:
- db
web:
build: ./web
restart: unless-stopped
ports:
2019-11-16 06:31:32 +00:00
- ${HTTP_PORT}:2015
2019-11-15 12:51:55 +00:00
volumes:
2019-11-15 18:20:27 +00:00
- app:/var/www/html:ro
2019-11-15 12:51:55 +00:00
depends_on:
- app
2019-11-16 06:31:32 +00:00
# web-ssl:
# build: ./web-ssl
# restart: unless-stopped
# environment:
# - CADDYPATH=/certs
# - HTTP_HOST=${HTTP_HOST}
# ports:
2019-11-16 06:44:32 +00:00
# - 80:80
# - 443:443
2019-11-16 06:31:32 +00:00
# volumes:
# - app:/var/www/html:ro
# - certs:/certs
# depends_on:
# - app
2019-11-15 12:51:55 +00:00
volumes:
db:
2019-11-15 18:20:27 +00:00
app:
2019-11-16 06:31:32 +00:00
certs: