【问题标题】:How to write the stack file for Docker Cloud?如何为 Docker Cloud 编写堆栈文件?
【发布时间】:2017-11-10 00:31:19
【问题描述】:

我的主要目标是通过 docker stack 将我的 Laravel 5.1 网站部署到我的 docker cloud

  • 我已经将我的 DockerCloud 账户与我的 AWS 账户关联起来。
  • 我已经有了:

    1. docker-compose.yml
    2. app.dockerfile
    3. web.dockerfile

docker-compose.yml

version: '2'
services:
# The Application
app:
  build:
    context: ./
    dockerfile: app.dockerfile
  working_dir: /var/www
  volumes:
    - ./:/var/www
  environment:
    - "DB_PORT=3306"
    - "DB_HOST=45.55.88.57"

# The Web Server
web:
  build:
    context: ./
    dockerfile: web.dockerfile
  working_dir: /var/www
  volumes_from:
    - app
  ports:
    - 85:80
volumes:
dbdata:

app.dockerfile

FROM php:7.0.4-fpm
RUN apt-get update && apt-get install -y libmcrypt-dev \
      mysql-client libmagickwand-dev --no-install-recommends \
      && pecl install imagick \
      && docker-php-ext-enable imagick \
      && docker-php-ext-install mcrypt pdo_mysql

web.dockerfile

  FROM nginx:1.10
  ADD vhost.conf /etc/nginx/conf.d/default.conf

vhost.conf

 server {
      listen 80;
      index index.php index.html;
      root /var/www/public;

      location / {
          try_files $uri /index.php?$args;
      }

      location ~ \.php$ {
          fastcgi_split_path_info ^(.+\.php)(/.+)$;
          fastcgi_pass app:9000;
          fastcgi_index index.php;
          include fastcgi_params;
          fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
          fastcgi_param PATH_INFO $fastcgi_path_info;
      }
  }

结果

http://localhost:85

它在本地运行完美正常。

目标

有了我得到的所有 docker 文件,我该如何为 Docker Cloud 编写堆栈文件?

【问题讨论】:

    标签: amazon-web-services docker docker-compose dockerfile docker-stack


    【解决方案1】:

    我会尝试 Elastic Beanstalk。请看here。所以你需要将 docker-compose.yml 返工为 Dockerrun.aws.json。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-02-28
      • 1970-01-01
      • 2015-12-22
      • 2023-04-01
      • 2017-10-21
      相关资源
      最近更新 更多