Advertisement
sergio_educacionit

apache2

Dec 27th, 2024 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.28 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4.   webserver:
  5.     image: ubuntu/apache2
  6.     container_name: ubuntu_apache
  7.     networks:
  8.      - web_network
  9.     volumes:
  10.      - web_data:/var/www/html
  11.     ports:
  12.      - "8080:80"
  13.  
  14. networks:
  15.   web_network:
  16.     driver: bridge
  17.  
  18. volumes:
  19.   web_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement