26 lines
495 B
YAML
26 lines
495 B
YAML
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
|
|
depends_on:
|
|
- traefik
|
|
restart: unless-stopped
|
|
|
|
snexo.co.uk:
|
|
image: "php:apache"
|
|
container_name: snexo.co.uk
|
|
volumes:
|
|
- ./snexo.co.uk/:/var/www/html
|
|
depends_on:
|
|
- traefik
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
frontend:
|
|
external: true |