initial commit

This commit is contained in:
2025-10-12 18:41:02 +02:00
commit 75347648bc
6 changed files with 107 additions and 0 deletions

14
start.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
#docker run --detach \
# -p 81:80 \
# --name nginx \
# --restart unless-stopped \
# urmo/nginx:latest
docker run -d \
--name mysite-nginx \
--network web \
-p 80:80 \
--restart unless-stopped \
nginx