mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-07-23 17:31:10 +02:00
16 lines
262 B
YAML
16 lines
262 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
portfolio:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: portfolio
|
|
ports:
|
|
- "${PORT:-5000}:${PORT:-5000}"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./app:/app
|
|
restart: unless-stopped
|