Update .gitea/workflows/services.yml
Test Workflow run in Container / test (push) Successful in 9s
Test Gitea Actions with Service Containers / build (push) Has been cancelled

This commit is contained in:
2023-07-17 20:14:57 +02:00
parent 3e59f023a1
commit ad94a6ab07
+8 -7
View File
@@ -20,22 +20,23 @@ jobs:
env: env:
MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: supersecretpassword MONGO_INITDB_ROOT_PASSWORD: supersecretpassword
mongo-express: mongoexpress:
image: mongo-express:latest image: mongo-express:latest
ports: ports:
- 7777:8081 - 7778:8081
env: env:
ME_CONFIG_BASICAUTH_USERNAME: basic ME_CONFIG_BASICAUTH_USERNAME: basic
ME_CONFIG_BASICAUTH_PASSWORD: supersecretpassword ME_CONFIG_BASICAUTH_PASSWORD: supersecretpassword
ME_CONFIG_MONGODB_ADMINUSERNAME: root ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: supersecretpassword ME_CONFIG_MONGODB_ADMINPASSWORD: supersecretpassword
ME_CONFIG_MONGODB_SERVER: mongodb ME_CONFIG_MONGODB_SERVER: mongodb
mongodbtwo:
image: mongo:latest
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: supersecretpassword
steps: steps:
- name: Print Debug
run: |
echo ---------------------------------------------
echo "${{ gitea }}"
echo ---------------------------------------------
echo "${{ job }}"
- name: Install NodeJS - name: Install NodeJS
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with: