diff --git a/examples/docker-compose.yml b/examples/docker-compose.yml
index 5a5ff538cd8363042051dc27b6cdd9faf3442dd3..ae312fd7b13a429fb279c5d0fe8cc720388f6f4b 100644
--- a/examples/docker-compose.yml
+++ b/examples/docker-compose.yml
@@ -1,5 +1,3 @@
-version: "3.8"
-
 services:
   traefik:
     image: traefik:v2.10
@@ -83,7 +81,7 @@ services:
   xss-protected:
     image: nginx:alpine
     volumes:
-      - ./xss/protected:/usr/share/nginx/html
+      - ./xss_csp/protected:/usr/share/nginx/html
     labels:
       - "traefik.enable=true"
       - "traefik.http.routers.xss-protected.rule=Host(`xss-protected.localhost`)"
@@ -92,8 +90,7 @@ services:
   xss-vulnerable:
     image: nginx:alpine
     volumes:
-      - ./xss/vulnerable:/usr/share/nginx/html
-      # - ./xss/nginx-vulnerable.conf:/etc/nginx/conf.d/default.conf
+      - ./xss_csp/vulnerable:/usr/share/nginx/html
     labels:
       - "traefik.enable=true"
       - "traefik.http.routers.xss-vulnerable.rule=Host(`xss-vulnerable.localhost`)"
@@ -101,8 +98,7 @@ services:
   xss-attacker:
     image: nginx:alpine
     volumes:
-      - ./xss/attacker:/usr/share/nginx/html
-      # - ./xss/nginx-attacker.conf:/etc/nginx/conf.d/default.conf
+      - ./xss_csp/attacker:/usr/share/nginx/html
     labels:
       - "traefik.enable=true"
       - "traefik.http.routers.xss-attacker.rule=Host(`xss-attacker.localhost`)"