More Docker build fun (#326).
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dan Helfman 2023-06-22 15:11:49 -07:00
parent bb0dd14f69
commit 23809e9060
2 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ services:
POSTGRES_DB: test
POSTGRES_USER: postgres2
commands:
- postgres -p 5433
- docker-entrypoint.sh -p 5433
- name: mysql
image: docker.io/mariadb:10.5
environment:
@ -27,7 +27,7 @@ services:
MYSQL_ROOT_PASSWORD: test2
MYSQL_DATABASE: test
commands:
- mysqld --port=3307
- docker-entrypoint.sh --port=3307
- name: mongodb
image: docker.io/mongo:5.0.5
environment:
@ -39,7 +39,7 @@ services:
MONGO_INITDB_ROOT_USERNAME: root2
MONGO_INITDB_ROOT_PASSWORD: test2
commands:
- mongod --port=27018
- docker-entrypoint.sh --port=27018
clone:
skip_verify: true

View File

@ -11,7 +11,7 @@ services:
POSTGRES_PASSWORD: test2
POSTGRES_DB: test
POSTGRES_USER: postgres2
command: postgres -p 5433
command: docker-entrypoint.sh -p 5433
mysql:
image: docker.io/mariadb:10.5
environment:
@ -22,7 +22,7 @@ services:
environment:
MYSQL_ROOT_PASSWORD: test2
MYSQL_DATABASE: test
command: mysqld --port=3307
command: docker-entrypoint.sh --port=3307
mongodb:
image: docker.io/mongo:5.0.5
environment:
@ -33,7 +33,7 @@ services:
environment:
MONGO_INITDB_ROOT_USERNAME: root2
MONGO_INITDB_ROOT_PASSWORD: test2
command: mongod --port=27018
command: docker-entrypoint.sh --port=27018
tests:
image: docker.io/alpine:3.13
environment: