We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose.yml
1.2.0
latest
version: '3' services: frontend: image: colynn/atomci-frontend:1.2.0 container_name: "frontend" networks: - node-network ports: - "8090:8090" volumes: - "./nginx:/etc/nginx/conf.d" atomci: image: colynn/atomci:1.2.0 container_name: "atomci" depends_on: - mysql networks: - node-network ports: - "8080:8080" environment: - ENV=prod volumes: - "./conf/app.conf:/atomci/conf/app.conf" - "./conf/rbac_policy.csv:/atomci/conf/rbac_policy.csv" - "./conf/k8sconfig:/atomci/conf/k8sconfig" - "/etc/localtime:/etc/localtime" - "/usr/share/zoneinfo/Asia/Shanghai:/usr/share/zoneinfo/Asia/Shanghai" mysql: image: mysql:5.7.35 container_name: mysql networks: - node-network restart: always volumes: - "./mysql/my.cnf:/etc/mysql/my.cnf" - "./mysql/data:/var/lib/mysql" environment: MYSQL_DATABASE: atomci MYSQL_ROOT_PASSWORD: 123456 networks: node-network: driver: bridge
$ docker-compose pull atomci fronend $ docker-compose up -d atomci frontend
The text was updated successfully, but these errors were encountered:
No branches or pull requests
docker-compose 部署方式- 更新说明
docker-compose.yml
的镜像的版本,调整为1.2.0
或是latest
The text was updated successfully, but these errors were encountered: