Initial commit
This commit is contained in:
commit
e6d6427ddc
29 changed files with 4378 additions and 0 deletions
36
docker-compose.yaml
Normal file
36
docker-compose.yaml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
version: "3"
|
||||
name: "template"
|
||||
services:
|
||||
|
||||
api:
|
||||
build:
|
||||
context: "./api"
|
||||
dockerfile: "dockerfile"
|
||||
target: dev
|
||||
ports:
|
||||
- "6969:6969"
|
||||
environment:
|
||||
NODE_ENV: "dev"
|
||||
healthcheck:
|
||||
disable: true
|
||||
volumes:
|
||||
- "./api:/app"
|
||||
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
||||
|
||||
site:
|
||||
build:
|
||||
context: "./frontend"
|
||||
dockerfile: "dockerfile"
|
||||
target: "dev"
|
||||
restart: "unless-stopped"
|
||||
ports:
|
||||
- "5173:5173"
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- "./frontend:/app"
|
||||
|
||||
stdin_open: true
|
||||
tty: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue