initial commit - added auth server

This commit is contained in:
2023-12-04 13:38:21 +01:00
commit 48acef0436
8 changed files with 217 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@ -0,0 +1,26 @@
version: '3'
services:
tcg_database:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
ports:
- 51346:5432
database_visualizer:
image: adminer
restart: always
ports:
- 8080:8080
redis_cache:
image: redis
restart: always
ports:
- 6379:6379
volumes:
dbdata:
networks:
shoplistnetwork:
driver: bridge