docker-compose.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. version: '2'
  2. services:
  3. nginx:
  4. build: nginx
  5. ports:
  6. - "8000:80"
  7. volumes:
  8. - /etc/localtime:/etc/localtime:ro
  9. - ./html:/usr/share/nginx/html
  10. # Fancy! Using sockets to connect to php-fpm! :D
  11. - ./socks:/socks
  12. - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
  13. # - ./more.conf:/etc/nginx/modules/more.conf:ro
  14. # restart: always
  15. php:
  16. build: php-image
  17. volumes:
  18. # AFter setup, down LocalSettings.php and use it here
  19. - ./socks:/socks
  20. - /etc/localtime:/etc/localtime:ro
  21. - ./html:/usr/share/nginx/html
  22. - ./LocalSettings.php:/usr/share/nginx/html/LocalSettings.php
  23. # restart: always
  24. db:
  25. image: postgres:11-alpine
  26. volumes:
  27. - ./pg_data:/var/lib/postgresql/data
  28. - /etc/localtime:/etc/localtime:ro
  29. environment:
  30. POSTGRES_PASSWORD: easy4me2remember
  31. POSTGRES_DB: mediawiki
  32. POSTGRES_USER: mediawiki
  33. user: "1000:1000"
  34. redis:
  35. image: redis:5-alpine
  36. volumes:
  37. - /etc/localtime:/etc/localtime:ro
  38. - ./redis:/data
  39. command: ["redis-server", "--appendonly", "yes"]
  40. user: "1000:1000"