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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I try to deploy solidtime over portainer but receiving the following issue:
I adjusted the compose as followed
services: app: restart: unless-stopped image: "solidtime/solidtime:${SOLIDTIME_IMAGE_TAG:-latest}" #user: "1000:1000" ports: - '${FORWARD_APP_PORT:-8000}:8000' networks: - internal volumes: - /volume1/docker/solidtime/app-storage:/var/www/html/storage - /volume1/docker/solidtime/app-storage/logs:/var/www/html/storage/logs - /volume1/docker/solidtime/app-storage/app:/var/www/html/storage/app environment: CONTAINER_MODE: http healthcheck: test: [ "CMD-SHELL", "curl --fail http://localhost:8000/health-check/up || exit 1" ] env_file: stack.env depends_on: - database scheduler: restart: unless-stopped image: "solidtime/solidtime:${SOLIDTIME_IMAGE_TAG:-latest}" #user: "1000:1000" networks: - internal volumes: - /volume1/docker/solidtime/app-storage:/var/www/html/storage - /volume1/docker/solidtime/app-storage/logs:/var/www/html/storage/logs - /volume1/docker/solidtime/app-storage/app:/var/www/html/storage/app environment: CONTAINER_MODE: scheduler healthcheck: test: [ "CMD-SHELL", "supervisorctl status scheduler:scheduler_00" ] env_file: stack.env depends_on: - database queue: restart: unless-stopped image: "solidtime/solidtime:${SOLIDTIME_IMAGE_TAG:-latest}" #user: "1000:1000" networks: - internal volumes: - /volume1/docker/solidtime/app-storage:/var/www/html/storage - /volume1/docker/solidtime/app-storage/logs:/var/www/html/storage/logs - /volume1/docker/solidtime/app-storage/app:/var/www/html/storage/app environment: CONTAINER_MODE: worker WORKER_COMMAND: "php /var/www/html/artisan queue:work" healthcheck: test: [ "CMD-SHELL", "supervisorctl status worker:worker_00" ] env_file: stack.env depends_on: - database database: restart: unless-stopped image: 'postgres:15' # ports: # - '${FORWARD_DB_PORT:-5432}:5432' environment: PGPASSWORD: '${DB_PASSWORD:-secret}' POSTGRES_DB: '${DB_DATABASE}' POSTGRES_USER: '${DB_USERNAME}' POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}' volumes: - '/volume1/docker/solidtime/database-storage:/var/lib/postgresql/data' networks: - internal healthcheck: test: - CMD - pg_isready - '-q' - '-d' - '${DB_DATABASE}' - '-U' - '${DB_USERNAME}' retries: 3 timeout: 5s gotenberg: image: gotenberg/gotenberg:8 networks: - internal healthcheck: test: [ "CMD", "curl", "--silent", "--fail", "http://localhost:3000/health" ] networks: internal: volumes: database-storage: app-storage:As you can see I adujsted
restart
env_file
user - but I did this:
volume
Any idea why I recieve this issue?
Beta Was this translation helpful? Give feedback.
All reactions