forked from LaconicNetwork/kompose
* chore: unify e2e tests to compose yaml Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * chore: update tests_new.sh to reflect changes of files names Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
28 lines
559 B
YAML
28 lines
559 B
YAML
version: '2'
|
|
|
|
services:
|
|
redis:
|
|
restart: always
|
|
image: sameersbn/redis:latest
|
|
command:
|
|
- --loglevel warning
|
|
volumes:
|
|
- /srv/docker/gitlab/redis:/var/lib/redis
|
|
ports:
|
|
- "6379"
|
|
|
|
postgresql:
|
|
restart: always
|
|
image: sameersbn/postgresql:9.5-3
|
|
volumes:
|
|
- /srv/docker/gitlab/postgresql:/var/lib/postgresql
|
|
environment:
|
|
- DB_USER=gitlab
|
|
- DB_PASS=password
|
|
- DB_NAME=gitlabhq_production
|
|
- DB_EXTENSION=pg_trgm
|
|
ports:
|
|
- "5432"
|
|
labels:
|
|
kompose.volume.size: 200Mi
|