roysathome.net/auth/docker/docker-compose.yml

13 lines
209 B
YAML
Raw Normal View History

2023-12-11 22:35:31 +00:00
version: "3"
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "4567:4567"
volumes:
- ./auth:/app # Adjust the path accordingly
command: ["./auth.rb"]