Skip to content
Snippets Groups Projects
docker-compose.yml 482 B
Newer Older
version: '3'

services:
  maphin-php:
    build:
      context: .
      dockerfile: .docker/Dockerfile
    image: maphin-php
    container_name: maphin-php
    expose:
      - "80"
    environment:
      - VIRTUAL_HOST=uni.basti.rocks
      - VIRTUAL_PORT=80
      - LETSENCRYPT_HOST=uni.basti.rocks
      - LETSENCRYPT_EMAIL=admin@basti.rocks
      - TZ=Europe/Berlin
    networks:
      - proxy
    restart: unless-stopped
networks:
  proxy:
    external:
      name: nginx-proxy