Files
ctf/2025/catthegrey/ezpz/dist-oops/compose.yaml
2025-06-06 03:13:31 +02:00

26 lines
424 B
YAML

services:
challenge:
container_name: web-oops-app
build:
context: app
dockerfile: Dockerfile
ports:
- "33001:5000"
networks:
- webnet
admin:
container_name: web-oops-admin
build:
context: admin
dockerfile: Dockerfile
restart: always
environment:
- FLAG=grey{fake_flag}
dns:
- 8.8.8.8
networks:
- webnet
networks:
webnet: