Create docker-compose.yml

added docker-compose.yml
This commit is contained in:
bartek 2024-10-29 09:11:02 +01:00 committed by GitHub
parent 44350d3c24
commit 60bc2299ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

9
docker-compose.yml Normal file
View file

@ -0,0 +1,9 @@
version: '3.8'
services:
app:
image: node:latest
working_dir: /app
volumes:
- .:/app
command: node main.js