diff options
| author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-08-07 21:10:01 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-08-07 21:10:01 -0700 |
| commit | 9cdb7a145e5bc0167243e4fac0cad0b65533f97b (patch) | |
| tree | 39cc21aa6b50cd7fe1e0792a706463f8b964b59b /docker-compose.yml | |
| parent | 514b0338844334aa4aaf332c6e29efb6a1aadaa6 (diff) | |
| download | kennel.hatecomputers.club-9cdb7a145e5bc0167243e4fac0cad0b65533f97b.tar.gz kennel.hatecomputers.club-9cdb7a145e5bc0167243e4fac0cad0b65533f97b.zip | |
add ci/cd
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..f20fa83 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: "3" + +services: + kennel: + restart: always + build: . + healthcheck: + test: ["CMD", "wget", "--spider", "http://localhost:8000/healthcheck"] + interval: 5s + timeout: 10s + retries: 5 + env_file: .env + volumes: + - ./data:/app/data + ports: + - "127.0.0.1:60613:8000" + |
