6 lines
134 B
Bash
6 lines
134 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Start the pgAdmin service using its Docker Compose file
|
||
|
|
docker compose -p pgadmin -f pgadmin-docker-compose.yml up -d
|
||
|
|
|