gctf2023/pwn/35-shades-of-wasm/35ShadesOfWasm/docker-compose.yml
2023-11-24 13:11:34 -05:00

21 lines
535 B
YAML

# Read the comments, they are actually helpful. (like this one)
version: "3"
services:
app:
# Challenge related options
build: .
ports:
- 1337:1337
# Uncomment this block during development
# Every time you rebuild your file you can immeditately test it
# volumes:
# - ./chall:/app
# Security releated options
user: 1337:1337
privileged: false
read_only: true
cap_add: [] # See "man 7 capabilities" for a full list
cap_drop: [] # See "man 7 capabilities" for a full list