gpupo / container-orchestration
Container-orchestration sets for automating deployment, scaling and management of containerized clusters
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 5
Open Issues: 4
Language:Shell
- dev-master
- 2.3.0
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- v1.x-dev
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.4
- 1.29.3
- 1.29.2
- 1.29.1
- 1.29.0
- 1.28.1
- 1.28.0
- 1.27.1
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.2
- 1.24.1
- 1.24.0
- 1.23.1
- 1.23.0
- 1.22.1
- 1.21.0
- 1.20.0
- 1.17.1
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.1
- 1.14.0
- 1.13.0
- 1.12.4
- 1.12.3
- 1.12.2
- 1.12.1
- 1.11.1
- 1.11.0
- 1.10.3
- 1.10.2
- 1.10.1
- 1.10.0
- 1.9.0
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.2
- 1.7.0
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.1
- 1.5.0
- 1.4.16
- 1.4.15
- 1.4.14
- 1.4.13
- 1.4.12
- 1.1.0
- 1.0.0
- dev-tech-stack-file
- dev-php8
- dev-topic/php8
- dev-develop
- dev-php/7.3
This package is auto-updated.
Last update: 2024-05-07 12:53:44 UTC
README
Container-orchestration sets for automating deployment, scaling and management of containerized clusters
Requirements
- Docker
Use images only with Docker
Python
docker run -v "$PWD":/usr/src/app -it --entrypoint /bin/bash \
gpupo/container-orchestration:python-dev
PHP
docker run -v "$PWD":/var/www/app -it --entrypoint /bin/bash \
gpupo/container-orchestration:php-dev
To run Symfony 5
, create th docker-compose.yaml
file with content:
version: '2' services: php: container_name: php image: gpupo/container-orchestration:php-fpm volumes: - ./:/var/www/app networks: - backend nginx-upstream: container_name: nginx-upstream image: gpupo/container-orchestration:nginx-upstream ports: - "80:80" links: - php volumes: - ./:/var/www/app networks: - frontend - backend networks: frontend: backend:
and run
docker-compose up -d
or simple run:
docker run -d gpupo/container-orchestration:php-dev
Development
-
Clone this project;
-
Add your fork url as Remote in your local repository;
-
Create a fetature branch
-
Edit and build images;
-
Push new codes into your remote branch;
-
Create a Pull Request
Build Images
docker-compose build
Upload to Docker Hub (if you have permission!)
docker push gpupo/container-orchestration
OSX upload workaround
docker login -u gpupo -p ******** docker.io && docker push gpupo/container-orchestration