feat: game creation and login

This commit is contained in:
2024-12-28 17:38:25 +01:00
parent a3dc01171a
commit c7c778a55b
29 changed files with 1735 additions and 1104 deletions
+23 -1
View File
@@ -1,4 +1,5 @@
services:
postgres:
image: postgres
ports:
@@ -7,6 +8,27 @@ services:
- pg_data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=test
pgadmin:
image: dpage/pgadmin4
ports:
- 8080:80
environment:
- PGADMIN_DEFAULT_EMAIL=postgres@postgres.com
- PGADMIN_DEFAULT_PASSWORD=postgres
- PGADMIN_DISABLE_POSTFIX=true
volumes:
- pgadmin_data:/var/lib/pgadmin
redis:
image: redis
ports:
- 6379:6379
volumes:
- redis_data:/data
command: "redis-server --save 60 1"
volumes:
pg_data:
pgadmin_data:
redis_data: