* Set stack and container names in docker-compose files * Update changelog --------- Signed-off-by: Dominik Willner <th33xitus@gmail.com>
26 lines
553 B
YAML
26 lines
553 B
YAML
name: ghostfolio_dev
|
|
services:
|
|
postgres:
|
|
image: docker.io/library/postgres:15
|
|
container_name: gf-postgres-dev
|
|
restart: unless-stopped
|
|
env_file:
|
|
- ../.env
|
|
ports:
|
|
- ${POSTGRES_PORT:-5432}:5432
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: docker.io/library/redis:alpine
|
|
container_name: gf-redis-dev
|
|
restart: unless-stopped
|
|
env_file:
|
|
- ../.env
|
|
command: ['redis-server', '--requirepass', $REDIS_PASSWORD]
|
|
ports:
|
|
- ${REDIS_PORT:-6379}:6379
|
|
|
|
volumes:
|
|
postgres:
|