mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-07-07 03:25:12 +02:00
19 lines
381 B
YAML
19 lines
381 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
portfolio:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: application-portfolio
|
|
container_name: portfolio
|
|
ports:
|
|
- "${PORT:-5000}:${PORT:-5000}"
|
|
volumes:
|
|
- ./app:/app
|
|
- ./.env:/app./.env
|
|
environment:
|
|
- PORT=${PORT:-5000}
|
|
- FLASK_ENV=${FLASK_ENV:-production}
|
|
restart: unless-stopped
|