1
0

docker-compose.yaml 522 B

12345678910111213141516
  1. services:
  2. cloudbeaver:
  3. hostname: cloudbeaver
  4. container_name: cloudbeaver
  5. image: dbeaver/cloudbeaver:latest
  6. restart: unless-stopped
  7. ports:
  8. - "8978:8978" # Host_Port:Container_Port
  9. labels:
  10. "com.helios.target": "http://localhost:8978"
  11. environment:
  12. # Optional: Configure the initial admin user
  13. CB_ADMIN_NAME: cbadmin
  14. CB_ADMIN_PASSWORD: Abcd1234 # Change this to a secure password
  15. CB_SERVER_NAME: "Test Server"
  16. CB_SERVER_URL: "cloudbeaver.devlocal.site"