mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Add Docker Compose for development
Spins up Redis and Postgres for development purposes
This commit is contained in:
parent
68f9fd491d
commit
b3300de18e
1 changed files with 13 additions and 0 deletions
13
developing/docker-compose.yml
Normal file
13
developing/docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
version: "3.9"
|
||||||
|
services:
|
||||||
|
proxstar-redis:
|
||||||
|
image: "redis:alpine"
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
|
proxstar-postgres:
|
||||||
|
image: postgres
|
||||||
|
# restart: always
|
||||||
|
ports:
|
||||||
|
- 5432:5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_PASSWORD: tits12348
|
Loading…
Add table
Add a link
Reference in a new issue