Advertisement
Navatusein

Apache Docker Compose

Jun 8th, 2024 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.20 KB | None | 0 0
  1. version: "3"
  2. services:
  3.   apache:
  4.     image: httpd
  5.     container_name: apache
  6.     ports:
  7.      - 8000:80
  8.     volumes:
  9.      - /appdata/apache:/usr/local/apache2/htdocs
  10.     restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement