wasm-test/docker-compose.yml

13 lines
189 B
YAML
Raw Normal View History

2024-10-14 21:42:29 +02:00
version: "3"
services:
web:
container_name: "web"
2024-11-18 15:59:28 +01:00
image: "node"
2024-10-14 21:42:29 +02:00
ports:
- "6969:80"
2024-11-18 15:59:28 +01:00
- "8080:8080"
2024-10-14 21:42:29 +02:00
volumes:
2024-11-18 15:59:28 +01:00
- ".:/app"
command: "node /app/server.js"