Skip to content

Instantly share code, notes, and snippets.

@Maksclub
Last active May 19, 2022 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Maksclub/f32bda03a3afc26b0b3b759de65c331e to your computer and use it in GitHub Desktop.
Save Maksclub/f32bda03a3afc26b0b3b759de65c331e to your computer and use it in GitHub Desktop.
version: "3.5"
services:
nginx:
image: nginx
volumes:
- ./:/app:ro
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
restart: "always"
ports:
- "80:80"
networks:
- google
php:
image: php8.1-fpm
volumes:
- ./:/app
restart: "always"
networks:
- google
networks:
google:
internal: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment