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

17 lines
295 B
YAML
Raw Normal View History

2023-12-11 22:35:31 +00:00
version: "3"
services:
2023-12-17 20:56:41 +00:00
server:
container_name: auth
2023-12-11 22:35:31 +00:00
build:
context: .
dockerfile: Dockerfile
ports:
2023-12-17 20:56:41 +00:00
- "47706:4567"
2023-12-11 22:35:31 +00:00
volumes:
2023-12-17 20:56:41 +00:00
- ./auth:/app/data # Adjust the path accordingly
2023-12-11 22:35:31 +00:00
command: ["./auth.rb"]
2023-12-17 20:56:41 +00:00
restart: always
ports:
- "47706:4567"