Closes #10 Reviewed-on: #17 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
12 lines
375 B
Plaintext
12 lines
375 B
Plaintext
version: '3.8' # Use a recent version
|
|
|
|
services:
|
|
catapult_service:
|
|
build: # Tells docker-compose to build the Dockerfile in the current directory
|
|
context: .
|
|
ssh: ["default"] # Uses host's SSH agent
|
|
container_name: catapult # Optional: Give the container a specific name
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped # Optional: Restart policy
|