作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下docker compose文件:
version: '2'
services:
app:
build: .
command: >
bash -cex "
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
/virtualenv/bin/flask run -h 0.0.0.0 -p 5050
"
env_file: env
links:
- postgres
ports:
- 8080:8080
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "app",
"image": "myorg/myimage",
"essential": true,
"memory": 256,
"command": [
"/bin/bash",
"export LC_ALL=C.UTF-8",
"export LANG=C.UTF-8",
"/virtualenv/bin/flask run -h 0.0.0.0 -p 5050"
],
"portMappings": [
{
"hostPort": 8080,
"containerPort": 8080
}
],
"links": [
"postgres",
]
}
最佳答案
$ pip install container-transform
$ cat docker-compose.yml | container-transform -v
关于amazon-web-services - Docker在Multicontainer Elastic Beanstalk中撰写env_file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42254666/
我有两个处理不同但相关功能的应用程序。我想将它们作为单个实体部署在单个host:port上。 我的计划是使用elasticbeanstalk的多容器Docker平台。每个应用程序都是一个容器。 如何将
我在Multicontainer Docker环境中有一个 flex beantalk实例,该实例在不同容器上部署了很少的应用程序。 当前,如果我要更新任何一个容器,我必须将所有容器(包括旧容器)的代
我的 Dockerrun.aws.json { "AWSEBDockerrunVersion": 2, "Authintication": { "Bucket": "abc",
我想在弹性 beanstalk 中部署一个多容器应用程序。我收到以下错误。 Error 1: The EC2 instances failed to communicate with AWS Elas
我尝试将 fluentd 日志驱动程序与以下 Dockerrun.aws.json 一起使用, { "AWSEBDockerrunVersion": 2, "contain
我是一名优秀的程序员,十分优秀!