StandardNotes Traefik Configuration Sample

version: '3.8' services: syncing-server-js: image: standardnotes/syncing-server-js container_name: syncing-server-js-standalone depends_on: - db - cache entrypoint: [ "./packages/syncing-server/wait-for.sh", "db", "3306", "./packages/syncing-server/wait-for.sh", "cache", "6379", "./packages/syncing-server/docker/entrypoint.sh", "start-web" ] env_file: .env environment: PORT: 3000 restart: unless-stopped networks: - s...
Read post