Docking tutorial

This commit is contained in:
2025-04-24 12:00:57 +00:00
parent 9b8c3902de
commit 391932813a
2 changed files with 14 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
# Dockerfile za NUKS
FROM alpine
CMD [ "echo", "Hello!" ]

10
docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
version: '3'
services:
webserver:
image: nginx
ports:
- "8080:80"
environment:
- SIPOREX=cegli
web:
image: alpine