oonyeje-portfolio/docker-compose.yaml
oonyeje 27a6ab91fc
Some checks reported errors
continuous-integration/drone Build encountered an error
- update ci
2023-12-01 10:46:18 -05:00

19 lines
394 B
YAML
Executable File

version: '3.3'
name: oonyeje-portfolio
services:
app:
image: oonyeje-portfolio
build:
context: ./
dockerfile: Dockerfile
ports:
- "6000:3000"
volumes:
- .:/home/node/app
- ./node_modules:/home/node/app/node_modules
working_dir: /home/node/app/
command: sh -c "yarn install && yarn dev"
env_file:
- .env.local