Functional Testing
Shell scripts to test k8s and os conversion which can be ran by following command in root dir `./script/test/cmd/tests.sh`
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
version: "2"
|
||||
|
||||
services:
|
||||
postgresql:
|
||||
image: swordphilic/postgresql
|
||||
ports:
|
||||
- "$DB_PORT"
|
||||
environment:
|
||||
DB_NAME: $DB_NAME
|
||||
DB_PASS: $DB_PASS
|
||||
DB_USER: $DB_USER
|
||||
|
||||
gitlab:
|
||||
image: swordphilic/gitlab
|
||||
ports:
|
||||
- "30000:80"
|
||||
- "30001:443"
|
||||
- "30002:22"
|
||||
restart: always
|
||||
environment:
|
||||
DB_TYPE: postgres
|
||||
DB_HOST: postgresql
|
||||
DB_PORT: $DB_PORT
|
||||
DB_NAME: $DB_NAME
|
||||
DB_PASS: $DB_PASS
|
||||
DB_USER: $DB_USER
|
||||
REDIS_HOST: redis
|
||||
REDIS_PORT: $REDIS_PORT
|
||||
|
||||
redis:
|
||||
image: swordphilic/redis
|
||||
ports:
|
||||
- "$REDIS_PORT"
|
||||
Reference in New Issue
Block a user