Skip to content

Commit

Permalink
Add docker compose and remove unused dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
juffalow committed Oct 10, 2023
1 parent 28eb6de commit ec5110e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .dockerignore

This file was deleted.

10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
frontend:
image: node:18-alpine
working_dir: /home/node
command: sh -c "yarn install && yarn start"
restart: unless-stopped
volumes:
- "./:/home/node"
ports:
- 3000:3000

0 comments on commit ec5110e

Please sign in to comment.