dockurr/casa

Sponsored OSS

By dockurr

Updated 10 days ago

CasaOS inside a Docker container.

Image
Networking
Operating Systems
Web Servers

6.7K

BuildVersionSizePackagePulls

Docker container of CasaOS (an OS for self-hosting).

Features ✨

  • Run CasaOS without the need to install it on your system!

Usage 🐳

Via Docker Compose:

services:
  casa:
    image: dockurr/casa
    container_name: casa
    ports:
      - 8080:8080
    volumes:
      - "/home/example:/DATA"
      - "/var/run/docker.sock:/var/run/docker.sock"
    restart: always
    stop_grace_period: 1m

Via Docker CLI:

docker run -it --rm -p 8080:8080 -v /home/example:/DATA -v /var/run/docker.sock:/var/run/docker.sock --stop-timeout 60 dockurr/casa

Screenshot 📸

FAQ 💬

How do I change the storage location?

To change the storage location, include the following bind mount in your compose file:

volumes:
  - /home/example:/DATA

Replace the example path /home/example with the desired storage folder.

Acknowledgements 🙏

Special thanks to @worph, this project would not exist without his invaluable work.

Stars 🌟

Stars

Docker Pull Command

docker pull dockurr/casa