test on docker image

This commit is contained in:
2022-11-14 15:47:12 +01:00
parent cb80c8bfe4
commit 7a045b3f34
5 changed files with 34 additions and 17 deletions

18
docker-compose.dev.yaml Normal file
View File

@@ -0,0 +1,18 @@
# DEV Compose file.
# For a production file see: README.md
version: '3.8'
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
app:
build: .
env_file: .env
depends_on:
- redis
ports:
- 1234:5000