OpenCloud is a modern file-sync and share platform.
| Port | 9200 |
| Registry | ghcr.io/daemonless/opencloud |
| Source | https://github.com/daemonless/opencloud |
| Website | https://opencloud.eu/ |
| Tag | Description | Best For |
|---|---|---|
latest |
Upstream Binary. Built from official release. | Most users. Matches Linux Docker behavior. |
Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.
services:
opencloud:
image: "ghcr.io/daemonless/opencloud:latest"
container_name: opencloud
environment:
- PUID=1000 # User ID for the application process
- PGID=1000 # Group ID for the application process
- TZ=UTC # Timezone for the container
- OC_URL=https://hostname:9200 # URL where OpenCloud can be accessed
volumes:
- "/path/to/containers/opencloud:/config"
ports:
- "9200:9200"
restart: unless-stopped.env:
# .env
DIRECTOR_PROJECT=opencloud
PUID=1000
PGID=1000
TZ=UTC
OC_URL=https://hostname:9200
appjail-director.yml:
# appjail-director.yml
options:
- virtualnet: ':<random> default'
- nat:
services:
opencloud:
name: opencloud
options:
- container: 'boot args:--pull'
- expose: '9200:9200 proto:tcp' \
oci:
user: root
environment:
- PUID: !ENV '${PUID}'
- PGID: !ENV '${PGID}'
- TZ: !ENV '${TZ}'
- OC_URL: !ENV '${OC_URL}'
volumes:
- opencloud: /config
volumes:
opencloud:
device: '/path/to/containers/opencloud'Makejail:
# Makejail
ARG tag=latest
OPTION overwrite=force
OPTION from=ghcr.io/daemonless/opencloud:${tag}
Note: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.
podman run -d --name opencloud \
-p 9200:9200 \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=UTC \
-e OC_URL=https://hostname:9200 \
-v /path/to/containers/opencloud:/config \
ghcr.io/daemonless/opencloud:latestappjail oci run -Pd \
-o overwrite=force \
-o container="args:--pull" \
-o virtualnet=":<random> default" \
-o nat \
-o expose="9200:9200 proto:tcp" \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=UTC \
-e OC_URL=https://hostname:9200 \
-o fstab="/path/to/containers/opencloud /config <pseudofs>" \
ghcr.io/daemonless/opencloud:latest opencloudNote: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.
- name: Deploy opencloud
containers.podman.podman_container:
name: opencloud
image: "ghcr.io/daemonless/opencloud:latest"
state: started
restart_policy: always
env:
PUID: "1000"
PGID: "1000"
TZ: "UTC"
OC_URL: "https://hostname:9200"
ports:
- "9200:9200"
volumes:
- "/path/to/containers/opencloud:/config"Access at: http://localhost:9200
| 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 |
OC_URL |
https://hostname:9200 |
URL where OpenCloud can be accessed |
| Path | Description |
|---|---|
/config |
Configuration directory |
| Port | Protocol | Description |
|---|---|---|
9200 |
TCP | Web UI |
!!! warning "Work in Progress"
This image is functional but may change significantly in a future release.
configand data directories moved from/config/.opencloudto/config
Existing data will be moved automatically during container initialization.
The upgrade requires a change to the configuration of the "sharing" service. Please follow the steps outlined in the Upgrade Guide to achieve that.
OpenCloud generates a default config with insecure settings (no TLS validation) on first start
or if the file /config/config/opencloud.yaml does not exist.
You can define the inital password for the admin user by setting the environment variable IDM_ADMIN_PASSWORD like this:
services:
opencloud:
environment:
- IDM_ADMIN_PASSWORD=<your_admin_password>If you do not set the password with the variable above, OpenCloud generates a random password for the admin user and
you can find it in the logs or in the file /config/config/opencloud.yaml.
So far I have only tested this image with bridge networking.
You may need to add an extra_host to your compose file to allow opencloud to connect to it's internal IDP.
That is at least what I had to do.
services:
opencloud:
extra_hosts:
- "host-hostname:127.0.0.1"To configure OpenCloud further, you can check out the list of environment variables.
Architectures: amd64
User: bsd (UID/GID via PUID/PGID, defaults to 1000:1000)
Base: FreeBSD 15
Need help? Join our Discord community.