You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
425 B
25 lines
425 B
3 years ago
|
version: '3.7'
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:12
|
||
|
env_file:
|
||
|
- ../.env
|
||
|
volumes:
|
||
|
- postgres:/var/lib/postgresql/data
|
||
|
|
||
|
redis:
|
||
|
image: 'redis:alpine'
|
||
|
|
||
|
ghostfolio:
|
||
|
build: ../
|
||
|
env_file:
|
||
|
- ../.env
|
||
|
environment:
|
||
|
REDIS_HOST: 'redis'
|
||
|
DATABASE_URL: postgresql://user:password@postgres:5432/ghostfolio-db?sslmode=prefer
|
||
|
ports:
|
||
|
- 3333:3333
|
||
|
|
||
|
volumes:
|
||
|
postgres:
|