Advertisement
Guest User

Untitled

a guest
Oct 24th, 2021
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1.  
  2. ---
  3. version: "2.1"
  4. services:
  5. mariadb:
  6. image: linuxserver/mariadb
  7. container_name: mariadb
  8. environment:
  9. - PUID=1001
  10. - PGID=1001
  11. - MYSQL_ROOT_PASSWORD=blah
  12. - TZ=Etc/UTC
  13. - MYSQL_DATABASE=my_test_db
  14. - MYSQL_USER=my_test_user
  15. - MYSQL_PASSWORD=my_test_password
  16. volumes:
  17. - mariadb:/config
  18. ports:
  19. - 3306:3306
  20. restart: unless-stopped
  21. volumes:
  22. mariadb:
  23. name: mariadb
  24. driver_opts:
  25. type: cifs
  26. o: "username=dmariadb,password=blah"
  27. device: "//ipaddress/dmariadb"
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement