Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2m3s
15 lines
226 B
YAML
15 lines
226 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
habit-tracker:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- habit-data:/app/data
|
|
environment:
|
|
- FLASK_ENV=production
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
habit-data: |