Create docker-compose.yaml

This commit is contained in:
Ryan Freeman 2025-06-10 14:38:27 +01:00 committed by GitHub
parent a3bee718ff
commit 2baa2c75b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
docker-compose.yaml Normal file
View File

@ -0,0 +1,17 @@
networks:
portfolio_net:
driver: bridge
name: portfolio_net
services:
portfolio_frontend:
container_name: portfolio_frontend
image: portfolio/frontend
build:
context: .
dockerfile: ./Dockerfile
ports:
- "3000:3000"
restart: unless-stopped
networks:
- portfolio_net