2022-02-15 16:20:16 +00:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
#Websites luke-else.co.uk (8000) snexo.co.uk (8001)
|
|
|
|
luke-else.co.uk:
|
|
|
|
image: "php:apache"
|
|
|
|
container_name: luke-else.co.uk
|
|
|
|
volumes:
|
|
|
|
- ./luke-else.co.uk/:/var/www/html
|
2022-10-31 21:39:29 +00:00
|
|
|
depends_on:
|
|
|
|
- traefik
|
2022-02-15 16:20:16 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
snexo.co.uk:
|
|
|
|
image: "php:apache"
|
|
|
|
container_name: snexo.co.uk
|
|
|
|
volumes:
|
|
|
|
- ./snexo.co.uk/:/var/www/html
|
2022-10-31 21:39:29 +00:00
|
|
|
depends_on:
|
|
|
|
- traefik
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
networks:
|
|
|
|
frontend:
|
|
|
|
external: true
|