Skip to content
Snippets Groups Projects
docker-compose.yml 371 B
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
db:
  image: mysql
  volumes:
    - ./mysql/runtime:/var/lib/mysql
  env_file:
Pierre Ozoux's avatar
Pierre Ozoux committed
    - ./env
app:
Pierre Ozoux's avatar
Pierre Ozoux committed
  image: indiehosters/wordpress
  links:
    - db:mysql
Pierre Ozoux's avatar
Pierre Ozoux committed
  volumes:
Pierre Ozoux's avatar
Pierre Ozoux committed
    - ./data:/var/www/html/wp-content
Pierre Ozoux's avatar
Pierre Ozoux committed
  env_file:
Pierre Ozoux's avatar
Pierre Ozoux committed
    - ./env
web:
  image: nginx
  volumes:
    - ./nginx.conf:/etc/nginx/nginx.conf:ro
  links:
    - app
  volumes_from:
    - app
Pierre Ozoux's avatar
Pierre Ozoux committed
  environment:
    - HOST