Nextcloud self-hosted cloud on FreeBSD.
services:
nextcloud:
image: ghcr.io/daemonless/nextcloud:latest
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/nextcloud:/config
- /path/to/data:/data
ports:
- 8082:8082
restart: unless-stopped
podman run -d --name nextcloud \
-p 8082:8082 \
-e PUID=@PUID@ \
-e PGID=@PGID@ \
-e TZ=@TZ@ \
-v /path/to/containers/nextcloud:/config \
-v /path/to/data:/data \
ghcr.io/daemonless/nextcloud:latest
Access at: http://localhost:8082
- name: Deploy nextcloud
containers.podman.podman_container:
name: nextcloud
image: ghcr.io/daemonless/nextcloud:latest
state: started
restart_policy: always
env:
PUID: "@PUID@"
PGID: "@PGID@"
TZ: "@TZ@"
ports:
- "8082:8082"
volumes:
- "/path/to/containers/nextcloud:/config"
- "/path/to/data:/data"
| Variable |
Default |
Description |
PUID |
1000 |
User ID for the application process |
PGID |
1000 |
Group ID for the application process |
TZ |
UTC |
Timezone for the container |
| Path |
Description |
/config |
Configuration and application files |
/data |
User data storage |
| Port |
Protocol |
Description |
8082 |
TCP |
|
- Architectures: amd64
- User:
bsd (UID/GID set via PUID/PGID)
- Base: Built on
ghcr.io/daemonless/base (FreeBSD)