Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,31 @@ $ docker rm bludit
$ docker rmi bludit/docker:latest
```

#### Run the container with persistent themes & plugins via docker compose
Minimal example with named Volume.


##### docker-compose.yml
```
services:
bludit:
image: bludit/docker:latest
ports:
- 8000:80
volumes:
- bludit:/usr/share/nginx/html

volumes:
bludit:
```

### Run the container with docker compose
$ docker compose up

### Stop the container with docker compose
$ docker compose down


## Kubernetes

The Kubernetes manifests are basic and can be improved for better security and shared storage to support multiple replicas.
Expand Down