this repo has no description
at main 53 lines 1.2 kB view raw
1services: 2 statusphere-db: 3 env_file: .env 4 expose: 5 - 5435 6 image: postgres:17-alpine 7 networks: 8 - statusphere-net 9 ports: 10 - 5435:5435 11 volumes: 12 - statusphere-db:/var/lib/postgresql/data 13 statusphere-valkey: 14 command: valkey-server --port $VALKEY_PORT --save 60 1 --loglevel $VALKEY_LOG_LEVEL --requirepass $VALKEY_PASSWORD 15 env_file: .env 16 expose: 17 - 6380 18 image: valkey/valkey:8.1.6-alpine 19 networks: 20 - statusphere-net 21 ports: 22 - 6380:6380 23 volumes: 24 - statusphere-valkey:/data 25 statusphere-test-db: 26 env_file: .env.test 27 expose: 28 - 54351 29 image: postgres:17-alpine 30 networks: 31 - statusphere-test-net 32 ports: 33 - 54351:54351 34 statusphere-test-valkey: 35 command: valkey-server --port $VALKEY_PORT --save 60 1 --loglevel $VALKEY_LOG_LEVEL --requirepass $VALKEY_PASSWORD 36 env_file: .env.test 37 expose: 38 - 6381 39 image: valkey/valkey:8.1.6-alpine 40 networks: 41 - statusphere-net 42 ports: 43 - 6381:6381 44volumes: 45 statusphere-db: 46 statusphere-valkey: 47networks: 48 statusphere-net: 49 driver: bridge 50 name: statusphere-net 51 statusphere-test-net: 52 driver: bridge 53 name: statusphere-test-net