Browse Source

Merge branch 'laravel' of https://github.com/iapt-platform/mint into laravel

visuddhinanda 2 years ago
parent
commit
c5fef0250f
4 changed files with 10 additions and 10 deletions
  1. 1 0
      composer.json
  2. 2 10
      docker/README.md
  3. 1 0
      docker/registries.conf
  4. 6 0
      docker/storage.conf

+ 1 - 0
composer.json

@@ -17,6 +17,7 @@
         "laravel/framework": "^8.75",
         "laravel/sanctum": "^2.11",
         "laravel/tinker": "^2.5",
+	"league/flysystem-aws-s3-v3": "^1.0",
         "mustache/mustache": "^2.14",
         "php-amqplib/php-amqplib": ">=3.0",
         "php-ffmpeg/php-ffmpeg": "^1.1",

+ 2 - 10
docker/README.md

@@ -1,20 +1,12 @@
-# Usage for Ubuntu 20.10 and newer
+# Usage for Ubuntu 22.04(jammy) and newer
 
-- Install podman: `sudo apt -y install podman runc buildah skopeo`.
-- Setup `/etc/containers/registries.conf`.
-
-  ```text
-  [registries.search]
-  registries = ['quay.io', 'docker.io']
-  ```
+- Install podman: `sudo apt install crun podman buildah fuse-overlayfs`.
 
 - Work with podman image
 
   ```bash
   # clear outdated images
   podman rmi -a -f
-  # uncompress image files
-  cat palm-spring.tar.xz.a* | tar xj
   # import new podman image
   podman load -q -i palm-spring-TIMESTAMP.tar  
   ```

+ 1 - 0
docker/registries.conf

@@ -0,0 +1 @@
+unqualified-search-registries = ["docker.io"]

+ 6 - 0
docker/storage.conf

@@ -0,0 +1,6 @@
+[storage]
+driver = "overlay"
+rootless_storage_path = "$HOME/.c"
+
+[storage.options.overlay]
+mount_program = "/usr/bin/fuse-overlayfs"