Switch from docker to podman
Far less invasive, needs fewer permissions, etc.
This commit is contained in:
parent
dd4abacc8a
commit
edc9fd8384
3 changed files with 12 additions and 11 deletions
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
postgres:
|
||||
image: postgres:14.1
|
||||
image: docker.io/library/postgres:14.1
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_USER=jet
|
||||
|
|
@ -12,7 +12,7 @@ services:
|
|||
- ./testdata/init/postgres:/docker-entrypoint-initdb.d
|
||||
|
||||
mysql:
|
||||
image: mysql/mysql-server:8.0.27
|
||||
image: docker.io/library/mysql/mysql-server:8.0.27
|
||||
command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1']
|
||||
restart: always
|
||||
environment:
|
||||
|
|
@ -25,7 +25,7 @@ services:
|
|||
- ./testdata/init/mysql:/docker-entrypoint-initdb.d
|
||||
|
||||
mariadb:
|
||||
image: mariadb:11.4
|
||||
image: docker.io/library/mariadb:11.4
|
||||
command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1']
|
||||
restart: always
|
||||
environment:
|
||||
|
|
@ -38,7 +38,7 @@ services:
|
|||
- ./testdata/init/mysql:/docker-entrypoint-initdb.d
|
||||
|
||||
cockroach:
|
||||
image: cockroachdb/cockroach-unstable:v23.1.0-rc.2
|
||||
image: docker.io/library/cockroachdb/cockroach-unstable:v23.1.0-rc.2
|
||||
environment:
|
||||
- COCKROACH_USER=jet
|
||||
- COCKROACH_PASSWORD=jet
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue