Podman Manager
Deploy and manage containers for your applications.
Admin Enable Required
Podman Manager must be enabled by your administrator. Contact them if you don't see this feature.
What is Podman?
Podman is a container runtime similar to Docker, but runs containers rootless by default. You can use it to deploy applications like WordPress, Nextcloud, Ghost, and more.
Viewing Your Containers
Navigate to Podman Manager in your panel. You'll see:
- Container Name — Your chosen name
- Image — The Docker image used
- Status — Running, Stopped, etc.
- Created — Creation date
Deploying a New Container
1
Click "Deploy New Container"
Button is in the top-right of the Podman Manager page.
2
Basic Settings
| Field | Required | Description |
|---|---|---|
| Name | Yes | Container identifier (alphanumeric, underscore, hyphen) |
| Image | Yes | Docker image (e.g., docker.io/library/wordpress:latest) |
| Container Port | Yes | Port inside the container |
| Domain | Yes | Select your domain |
| Relative Path | No | Path prefix (e.g., /blog) |
3
Environment Variables
Add required environment variables for your application:
| Key | Description |
|---|---|
| WORDPRESS_DB_HOST | Database host |
| WORDPRESS_DB_USER | Database username |
| WORDPRESS_DB_PASSWORD | Database password |
| WORDPRESS_DB_NAME | Database name |
Click + to add more variables.
4
Volumes (Optional)
Mount directories from your host to the container:
| Field | Description |
|---|---|
| Host Path | Directory on your server |
| Container Path | Mount point inside container |
5
Restart Policy
| Policy | Behavior |
|---|---|
| No | Never auto-restart |
| Always | Restart always (recommended) |
| On Failure | Restart only if exits with error |
6
Deploy
Click Deploy. Container deployment runs in the background.
Popular Application Templates
WordPress
| Setting | Value |
|---|---|
| Image | docker.io/library/wordpress:latest |
| Port | 80 |
| Required Env | WORDPRESS_DB_HOST, WORDPRESS_DB_USER, WORDPRESS_DB_PASSWORD, WORDPRESS_DB_NAME |
Nextcloud
| Setting | Value |
|---|---|
| Image | docker.io/library/nextcloud:latest |
| Port | 80 |
| Required Env | MYSQL_DATABASE, MYSQL_USER, MYSQL_PASSWORD, MYSQL_HOST |
Ghost
| Setting | Value |
|---|---|
| Image | docker.io/library/ghost:alpine |
| Port | 2368 |
| Required Env | url, database__client, database__connection__host, database__connection__user, database__connection__password, database__connection__database |
Managing Containers
Start Container
- Click on the container
- Click Start
- Wait for notification
Stop Container
- Click on the container
- Click Stop
- Container shuts down gracefully
Delete Container
- Click on the container
- Click Delete
- Container and its data are removed
Data Loss
Deleting a container removes all data stored inside. Use volumes to persist data on the host.
View Logs
- Click on the container
- Click Logs
- View last 100 lines of output
View Statistics
- Click on a running container
- Click Stats
- See real-time CPU, memory, network usage
Searching Images
Find images on Docker Hub:
- Click Search Images
- Enter search term (e.g., "nginx", "postgres")
- Browse results from Docker Hub
Inspecting Images
View environment variables supported by an image:
- Select an image from search results
- Click Inspect Image
- View all supported environment variables
Common Issues
Container Fails to Start
- Check image name is correct
- Verify port is available
- Ensure all required environment variables are set
- Check container logs for errors
Port Already in Use
Choose a different port or stop the conflicting service.
Environment Variable Not Recognized
Use Inspect Image to see the correct variable names for your image.
Backing Up Container Data
To preserve container data:
- Use volumes to mount host directories
- Regularly backup the mounted host directories
- Container configuration is saved in Simuzo
Best Practice
Always use volumes for data you want to persist. Container filesystem is ephemeral and data is lost on deletion.
Related Topics
- Resource Usage — Monitor container resource consumption
- Settings — Panel preferences