Simple, single-user event aggregation platform, for use in personal websites and other related places.
event-streaming single-user events event-aggregation
at develop 25 lines 461 B view raw
1services: 2 snowflake: 3 build: 4 context: . 5 dockerfile: Dockerfile 6 container_name: snowflake 7 restart: always 8 ports: 9 - "4300:4300" 10 env_file: .env 11 12 db: 13 image: mongo:latest 14 container_name: snowflake-db 15 restart: always 16 ports: 17 - "27017:27017" 18 environment: 19 MONGO_INITDB_ROOT_USERNAME: snowflake 20 MONGO_INITDB_ROOT_PASSWORD: snowflake 21 volumes: 22 - db_data:/data/db 23 24volumes: 25 db_data: