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.
35 lines
593 B
35 lines
593 B
services:
|
|
|
|
# PostgreSQL (Database)
|
|
#gs_postgres:
|
|
# extends:
|
|
# file: apps/backend/postgres.yml
|
|
# service: gs_postgres
|
|
|
|
# MySQL (Database)
|
|
gs_mysql:
|
|
extends:
|
|
file: apps/backend/mysql.yml
|
|
service: gs_mysql
|
|
|
|
gs_redis:
|
|
image: "redis:alpine"
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
gs_redis_commander:
|
|
image: rediscommander/redis-commander:latest
|
|
environment:
|
|
- REDIS_HOSTS=local:gs_redis:6379
|
|
ports:
|
|
- "8081:8081"
|
|
depends_on:
|
|
- gs_redis
|
|
|
|
|
|
volumes:
|
|
gs_postgres-master:
|
|
driver: local
|
|
gs_mariadb-master:
|
|
driver: local
|