Dockerizing...

This commit is contained in:
2025-04-11 18:08:31 +02:00
parent 2175a55a61
commit fb0fb2e508
2 changed files with 43 additions and 0 deletions

11
docker-compose.yaml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
services:
liveqso:
build:
dockerfile: ./Dockerfile
container_name: liveqso
ports:
- 8000:8000 # Exposed port - see WEBPORT above
volumes:
- ./config.js:/usr/src/app/config.js
restart: unless-stopped