my website at ewancroft.uk
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

add PHP support

authored by

Ewan Croft and committed by
GitHub
49089579 be24d25e

+12 -1
+12 -1
compose.yml
··· 1 1 services: 2 2 web: 3 3 image: caddy:alpine 4 + container_name: caddy 4 5 ports: 5 6 - "3002:80" 6 7 volumes: ··· 8 9 - ./caddy/Caddyfile:/etc/caddy/Caddyfile 9 10 networks: 10 11 - www 12 + depends_on: 13 + - php-fpm 14 + 15 + php-fpm: 16 + image: php:7.4-fpm-alpine 17 + container_name: php-fpm 18 + volumes: 19 + - .:/srv/www/ewancroft.uk 20 + networks: 21 + - www 11 22 12 23 networks: 13 24 www: 14 - external: false 25 + external: false