Closed cewert closed 3 years ago
Your quotes are wrong. You have to quote the whole key-value pair when using that compose syntax.
Ahh good call. Thank you!
For anyone that stumbles on this in the future, here's my now working config:
organizr:
image: organizr/organizr
container_name: organizr
environment:
- PUID=988
- PGID=987
- fpm=false # use socket connections instead of TCP
- TZ=America/New_York
- branch=v2-master #valid values are v2-master, master, v2-develop, develop
volumes:
- /xxx/xxx/xxx:/config
ports:
- 80:80
network_mode: "xxx"
restart: unless-stopped
I am setting up a new install of organizr using the following docker-compose config:
...but organizr fails to start with the following error:
To get my install working I just commented out the branch variable like so: