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

services:

  static:
    build: .
    environment:
      VIRTUAL_HOST: ''
      VIRTUAL_PORT: '80'
ecobytes's avatar
ecobytes committed
      LETSENCRYPT_HOST: ''
      LETSENCRYPT_EMAIL: 'status@ecobytes.net'
    volumes:
      - ./content/:/var/www
      - ./lighttpd.conf:/etc/lighttpd/lighttpd.conf
    expose:
      - 80
    networks:
ecobytes's avatar
ecobytes committed
      - frontend-web
ecobytes's avatar
ecobytes committed
  frontend-web:
    external: true