version: "3"
services:
server:
container_name: auth
build:
context: .
dockerfile: Dockerfile
ports:
- "47706:4567"
volumes:
- ./auth:/app/data # Adjust the path accordingly
command: ["./auth.rb"]
restart: always