Add Dockerfile, docker-compose.yml and Gitea Actions workflow for CI/CD

This commit is contained in:
DanielS
2026-06-30 23:19:39 +02:00
parent 79745eb127
commit 54fefadda9
3 changed files with 61 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
websitedummy:
build: .
image: websitedummy:latest
container_name: websitedummy
restart: always
read_only: true
tmpfs:
- /var/cache/nginx
- /var/run
ports:
- "127.0.0.1:8080:8080"
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M