2024-10-29 09:11:02 +01:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
app:
|
|
|
|
image: node:latest
|
|
|
|
working_dir: /app
|
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
command: node main.js
|
2024-10-29 12:35:05 +01:00
|
|
|
ports:
|
2024-10-29 14:27:22 +01:00
|
|
|
- "3000-3003:3000-3003" # see the view from the camera mounted on your bot head: http://localhost:3000/
|
2024-10-29 11:58:11 +01:00
|
|
|
|
|
|
|
viaproxy: #use this service to connect to an unsupported minecraft server versions. more info: ./services/viaproxy/README.md
|
|
|
|
image: ghcr.io/viaversion/viaproxy:latest
|
|
|
|
volumes:
|
|
|
|
- ./services/viaproxy:/app/run
|
2024-10-29 11:35:41 +01:00
|
|
|
ports:
|
2024-10-29 11:58:11 +01:00
|
|
|
- "25568:25568"
|
|
|
|
profiles:
|
|
|
|
- viaproxy
|