ospfcost/dev-env/docker-compose.yml
Gert-Jan Aalderink 9b67604ce4 Initial Entry
2025-07-09 22:11:21 +02:00

16 lines
379 B
YAML

nextjs-dev:
build: ./dev-env
container_name: nextjs-dev
networks:
LocalNet:
ipv4_address: '172.17.17.73'
ports:
- "2222:22" # SSH access for VS Code Server or remote shell
- "3001:3000" # Next.js dev preview
volumes:
- /storage/ospfcost:/workspace
environment:
- NODE_ENV=development
restart: unless-stopped