Refactor project structure: remove obsolete files, add new Dockerfile for Apache, and integrate React app with TypeScript support

This commit is contained in:
Lukian 2025-01-21 10:43:32 +01:00
parent d907d4df38
commit 0fa3c7715b
32 changed files with 2 additions and 2 deletions

24
apache/compose.yml Normal file
View file

@ -0,0 +1,24 @@
services:
webserver:
build: ./apache2
container_name: webserver
ports:
- 5000:5000
- 80:80
- 443:443
networks:
- mynetwork
attacker:
build: ./attacker
container_name: attacker
ports:
- 5001:5001
networks:
- mynetwork
privileged: true
depends_on:
- webserver
networks:
mynetwork:
external: false