mirror of https://github.com/ghostfolio/ghostfolio
4 changed files with 61 additions and 23 deletions
@ -0,0 +1,22 @@ |
|||
version: '3.7' |
|||
services: |
|||
postgres: |
|||
image: postgres:12 |
|||
container_name: postgres |
|||
restart: unless-stopped |
|||
ports: |
|||
- 5432:5432 |
|||
env_file: |
|||
- ../.env |
|||
volumes: |
|||
- postgres:/var/lib/postgresql/data |
|||
|
|||
redis: |
|||
image: 'redis:alpine' |
|||
container_name: redis |
|||
restart: unless-stopped |
|||
ports: |
|||
- 6379:6379 |
|||
|
|||
volumes: |
|||
postgres: |
Loading…
Reference in new issue