dockerise

This commit is contained in:
2025-03-13 13:52:33 +01:00
parent 4e1ae2bfa1
commit 0242b29f3c
5 changed files with 129 additions and 73 deletions

15
compose.yml Normal file
View File

@ -0,0 +1,15 @@
networks:
http-network:
name: http-network
driver: bridge
services:
http-server:
container_name: http-server
build: .
image: http-server:latest
restart: no
ports:
- 80:8080
networks:
- http-network