This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-frontend-ARCHIVED/docker/docker-compose-mac.yml.dist
2024-08-24 22:27:08 +00:00

31 lines
782 B
Plaintext

networks:
template:
external: true
services:
template-frontend-app:
image: template-frontend-app
networks:
- template
volumes:
- /Users/flo/dev/frontend/template/:/var/www/
build:
context: ./../
dockerfile: ./docker/npm/dockerfile
tty: true
template-frontend-nginx:
image: template-frontend-nginx
networks:
- template
volumes:
- /Users/flo/dev/frontend/template/:/var/www/html:z
build:
context: ./../
dockerfile: ./docker/nginx/dockerfile
labels:
- "traefik.http.routers.frontend.rule=Host(`template.local`)"
- "traefik.http.routers.frontend.entrypoints=websecure"
- "traefik.http.routers.frontend.tls.certresolver=le"
depends_on:
- template-frontend-app