dockerfile: move to repo root

This commit is contained in:
2026-01-28 18:03:30 +01:00
parent 18e1407254
commit f309508fdd
8 changed files with 14 additions and 14 deletions

26
docker-compose.yaml Normal file
View File

@ -0,0 +1,26 @@
services:
fail-db:
image: mysql
container_name: fail-db
environment:
MYSQL_ROOT_PASSWORD: fail
MYSQL_USER: fail
MYSQL_PASSWORD: fail
MYSQL_DATABASE: fail
ports:
- "3306:3306"
networks:
- fail-network
fail-demo:
image: fail-demo
container_name: fail-demo
ports:
- "5000:5000" # Result Browser
- "5022:22" # SSH
networks:
- fail-network
networks:
fail-network:
driver: bridge