├── .github └── workflows │ └── push.yml ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── docker-compose.yml └── requirements.txt /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-evans/docker-compose-actions-workflow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | redis --------------------------------------------------------------------------------