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.
40 lines
701 B
40 lines
701 B
4 years ago
|
version: '3.7'
|
||
|
services:
|
||
|
ghostfolio:
|
||
|
container_name: ghostfolio
|
||
|
image: ghostfolio:{{VERSION}}
|
||
|
restart: unless-stopped
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
- redis
|
||
|
env_file:
|
||
|
- ../.env
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
|
||
|
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:
|
||
|
portainer_data:
|
||
|
postgres:
|
||
|
name: ghostfolio-db
|