diff options
author | Stijn Seghers <stijnseghers@gmail.com> | 2022-10-13 15:24:17 +0200 |
---|---|---|
committer | iasoon <ilion.beyst@gmail.com> | 2022-10-29 13:27:43 +0200 |
commit | 33cd3a85f322ba5aaf4d85275e111a1e7deb5dd9 (patch) | |
tree | b68ae716c2cce3444985e34676d90d8dd81783c0 | |
parent | 60e9f900bd9776c0101f85c81b8e640fa32c7c2e (diff) | |
download | planetwars.dev-33cd3a85f322ba5aaf4d85275e111a1e7deb5dd9.tar.xz planetwars.dev-33cd3a85f322ba5aaf4d85275e111a1e7deb5dd9.zip |
chore: add docker-compose.yml
-rw-r--r-- | docker-compose.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6b3103f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3" + +services: + db: + image: "postgres:14" + ports: + - "5432:5432" + environment: + POSTGRES_DB: planetwars + POSTGRES_USER: planetwars + POSTGRES_PASSWORD: planetwars |