mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
22 lines
399 B
YAML
22 lines
399 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
app:
|
|
image: dev-toys-web-dev:1.0.0
|
|
build:
|
|
context: docker
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app:cached
|
|
- next:/app/.next
|
|
- node_modules:/app/node_modules
|
|
- yarn-cache:/usr/local/share/.cache/yarn/v6
|
|
command: sh -c "yarn && yarn dev"
|
|
ports:
|
|
- ${APP_PORT:-3000}:3000
|
|
|
|
volumes:
|
|
next:
|
|
node_modules:
|
|
yarn-cache:
|