made a lot of changes to accomodate running the same app for differnt projects.

This commit is contained in:
2020-04-24 10:43:33 -07:00
parent 206ed58eb9
commit 27e3c4e614
36 changed files with 897 additions and 121 deletions
+31
View File
@@ -0,0 +1,31 @@
################################################################################
# Joomla
# Update the .env file
#
# Version 1
################################################################################
version: '3.3'
volumes:
lap:
networks:
admin_web:
external:
name: admin_web
services:
lap:
image: nick/lamp
restart: always
networks:
- admin_web
volumes:
- lap:/var/www/html
labels:
- "traefik.enable=true"
- "traefik.http.routers.${PREFIX}_lap.rule=Host(`${DOMAIN_NAME}`)"
- "traefik.http.routers.${PREFIX}_lap.entrypoints=websecure"
- "traefik.http.routers.${PREFIX}_lap.tls=true"
- "traefik.http.services.${PREFIX}_lap.loadbalancer.server.port=80"