Advertisement
gassanpavel

docker-compose.yaml

Oct 30th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. version: "3"
  2.  
  3. services:
  4. web:
  5. image: nginx:1.15
  6. hostname: cregistry.example.com
  7. volumes:
  8. - ./nginx.conf:/etc/nginx/nginx.conf
  9. ports:
  10. - "80:80"
  11. nexus:
  12. image: sonatype/nexus3
  13. hostname: nexus.example.com
  14. volumes:
  15. - "/mnt/sdb1/nexus-data:/nexus-data"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement