services: auth: image: tzylo/auth-ce:latest ports: - "7200:7200" environment: JWT_SECRET: supersecret DATABASE_URL: postgresql://auth:auth@db:5432/authdb REDIS_URL: redis://redis:6379 NODE_ENV: production depends_on: - db - redis db: image: postgres:15 environment: POSTGRES_DB: authdb POSTGRES_USER: auth POSTGRES_PASSWORD: auth volumes: - auth-db:/var/lib/postgresql/data redis: image: redis:7 volumes: - auth-redis:/data volumes: auth-db: auth-redis: