You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`15-pkg` / `latest`|**FreeBSD Port**. Built from FreeBSD packages. | Production stability. |
24
+
|`15-pkg-latest`|**FreeBSD Port**. Built from FreeBSD packages. | Production stability. |
25
+
26
+
## Prerequisites
27
+
28
+
Before deploying, ensure your host environment is ready. See the [Quick Start Guide](https://daemonless.io/guides/quick-start) for host setup instructions.
29
+
30
+
## Deployment
31
+
32
+
### Podman Compose
33
+
34
+
```yaml
35
+
services:
36
+
base-core:
37
+
image: localhost/base-core:latest
38
+
container_name: base-core
39
+
restart: unless-stopped
40
+
```
41
+
42
+
### Podman CLI
43
+
44
+
```bash
45
+
podman run -d --name base-core \
46
+
localhost/base-core:latest
47
+
```
48
+
49
+
### Ansible
50
+
51
+
```yaml
52
+
- name: Deploy base-core
53
+
containers.podman.podman_container:
54
+
name: base-core
55
+
image: localhost/base-core:latest
56
+
state: started
57
+
restart_policy: always
58
+
```
59
+
60
+
## Parameters
61
+
62
+
**Architectures:** amd64
63
+
**User:** `bsd` (UID/GID via PUID/PGID, defaults to 1000:1000)
0 commit comments