| 12345678910111213141516 |
- services:
- ginger-service:
- image: ginger:latest
- container_name: ginger
- command: ["uwsgi", "--ini", "/app/uwsgi.ini"]
- env_file:
- - .env
- environment:
- FLASK_ENV: production
- LOG_FILE: /app/logs/app.log
- ports:
- - "5000:5000"
- volumes:
- - /home/tanlie/logs/ginger:/app/logs
- - /home/tanlie/config/.env:/app/.env
- restart: unless-stopped
|