*Actually* fix docker compose file. And some minor improvements.

pull/2/head
askiiart 10 months ago
parent 74d0256757
commit 2f38d7ab14
No known key found for this signature in database
GPG Key ID: C89CBC4F981EE719

@ -1,6 +1,6 @@
# iventoy # iventoy
A docker image running iventoy. A Docker image running [iventoy](https://www.iventoy.com).
A github actions workflow runs daily to check if their is a new release. A github actions workflow runs daily to check if their is a new release.
@ -8,21 +8,25 @@ A github actions workflow runs daily to check if their is a new release.
## Docker Compose ## Docker Compose
This does not work with rootless Docker. The container must be run as root.
```yaml ```yaml
--- ---
version: '3.9' version: '3.9'
services: services:
iventoy: iventoy:
volumes: image: ziggyds/iventoy:latest
- <mount>:<folder> container_name: iventoy
restart: always
privileged: true #must be true
ports: ports:
- 26000:26000 - 26000:26000
- 16000:16000 - 16000:16000
- 10809:10809 - 10809:10809
- 67:67 - 67:67
- 69:69 - 69:69
image: ziggyds/iventoy:latest volumes:
restart: unless-stopped - /<path to isos>:/iventoy/iso
``` ```
Not necessary to expose all the listed ports. Not necessary to expose all the listed ports.

Loading…
Cancel
Save