Peter Stuifzand
8b2f600259
All checks were successful
continuous-integration/drone/push Build is passing
- Don't add current directory as volume
22 lines
452 B
YAML
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"
|