ekster/docker-compose.yml
Peter Stuifzand 8b2f600259
All checks were successful
continuous-integration/drone/push Build is passing
Use new image pstuifzand/ekster
- Don't add current directory as volume
2019-08-07 00:48:52 +02:00

22 lines
452 B
YAML

version: '2'
services:
redis:
image: "redis:5"
web:
image: "pstuifzand/ekster:alpine"
working_dir: /opt/microsub
links:
- redis:redis
volumes:
- ./data:/opt/microsub
entrypoint: /app/eksterd
command: -auth=false -port 80 -templates /app/templates
ports:
- 8089:80
environment:
- "FEEDBIN_USER="
- "FEEDBIN_PASS="
- "EKSTER_BASEURL="
- "EKSTER_TEMPLATES=/app/templates"