ekster/docker-compose.yml
Peter Stuifzand 02bc2ab9bc
Some checks failed
continuous-integration/drone/push Build is failing
Add stream type postgres-stream
2021-05-11 17:23:25 +02:00

34 lines
775 B
YAML

version: '2'
services:
redis:
image: "redis:5"
database:
image: postgres
volumes:
- ./database-data:/var/lib/postgresql/data
environment:
POSTGRES_DB: ekster
POSTGRES_USER: ekster
POSTGRES_PASSWORD: simple
POSTGRES_HOST_AUTH_METHOD: trust
web:
image: "pstuifzand/ekster:alpine"
working_dir: /opt/microsub
links:
- redis:redis
volumes:
- ./data:/opt/microsub
- ./templates:/app/templates
- ./eksterd:/app/eksterd
entrypoint: /app/eksterd
command: -auth=false -port 80 -templates /app/templates
ports:
- 8089:80
environment:
- "FEEDBIN_USER="
- "FEEDBIN_PASS="
- "EKSTER_BASEURL=http://localhost:8089/"
- "EKSTER_TEMPLATES=/app/templates"