diff options
author | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:43:09 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2023-05-16 10:22:26 +0100 |
commit | 6f3de3a8853243d302132083edefe3f87f60dc07 (patch) | |
tree | 7da56f0d93f7274fa1e7edefe5b7e98e79f9a442 /compose.yml | |
parent | aaea9c8aa3c7124599987ee14f88d51bcdadbcc2 (diff) |
feat: Dockerize API
Diffstat (limited to 'compose.yml')
-rw-r--r-- | compose.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..fc4fbc6 --- /dev/null +++ b/compose.yml @@ -0,0 +1,9 @@ +services: + api: + container_name: poker-api + build: + context: . + dockerfile: Dockerfile + ports: + - "8000:8000" + command: make api |