Separated docker compose file

This commit is contained in:
2022-02-15 16:20:16 +00:00
parent f148e4705b
commit 65fb0fb9ce
6 changed files with 122 additions and 111 deletions

View File

@ -0,0 +1,18 @@
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
restart: unless-stopped
snexo.co.uk:
image: "php:apache"
container_name: snexo.co.uk
volumes:
- ./snexo.co.uk/:/var/www/html
restart: unless-stopped