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
Getting error: "s6-overlay-suexec: fatal: can only run as pid 1"
My docker compose file is still work in progress, but its enough to get the container booting up. Problem is it is killed instantly with the above error.
Getting error: "s6-overlay-suexec: fatal: can only run as pid 1"
My docker compose file is still work in progress, but its enough to get the container booting up. Problem is it is killed instantly with the above error.
My docker compose file:
`version: '2'
services:
freescout-app:
init: no
image: ghcr.io/tiredofit/docker-freescout
container_name: freescout-app
ports:
- 80:80
volumes:
- data:/www/html/
- logs:/www/logs/
environment:
- CONTAINER_NAME=freescout-app
- DB_HOST=freescout-db
- DB_NAME=freescout
- DB_USER=freescout
- DB_PASS=******
- SITE_URL=http://******
- ADMIN_EMAIL=*******
- ADMIN_PASS=******
- ENABLE_SSL_PROXY=FALSE
- DISPLAY_ERRORS=FALSE
- TIMEZONE=Europe/London
restart: always
volumes:
data:
driver: azure_file
driver_opts:
share_name: freescout
storage_account_name: freescoutstaging
logs:
driver: azure_file
driver_opts:
share_name: freescoutlogs
storage_account_name: freescoutstaging`
The text was updated successfully, but these errors were encountered: