Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu! osu.bingo
osu
at microservice 14 lines 357 B view raw
1# This docker compose file should ONLY be used for development purposes. 2# This config exposes each container using host mode, which is great for simple testing, 3# not great for deployment. 4 5services: 6 auth: 7 restart: unless-stopped 8 build: 9 context: . 10 dockerfile: docker/Dockerfile.auth 11 network_mode: host 12 13 env_file: 14 - .env