mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
32 lines
761 B
YAML
32 lines
761 B
YAML
################################################################################
|
|
# Joomla
|
|
# Update the .env file
|
|
#
|
|
# Version 1
|
|
################################################################################
|
|
version: '3.3'
|
|
|
|
volumes:
|
|
lap:
|
|
|
|
networks:
|
|
admin_web:
|
|
external:
|
|
name: admin_web
|
|
|
|
services:
|
|
|
|
lap:
|
|
image: nick/ubuntu-apache-php:latest
|
|
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"
|