You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
530 B
YAML
31 lines
530 B
YAML
services:
|
|
|
|
nextjs-hotreloading:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/Dockerfile
|
|
ports:
|
|
- "9000:8000"
|
|
environment:
|
|
LOGGER_LOG: "${LOGGER_LOG}"
|
|
LOGGER_DEBUG: "${LOGGER_DEBUG}"
|
|
command: "npm run dev"
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app
|
|
- node_modules:/app/node_modules
|
|
networks:
|
|
- app
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
|
|
volumes:
|
|
mariadb_data:
|
|
node_modules:
|
|
|
|
networks:
|
|
app:
|
|
name: padelry-network
|
|
external: false
|